﻿:root {
    --ink: #111722;
    --ink-soft: #202733;

    --cream: #f7f3eb;
    --cream-2: #eee9df;
    --white: #ffffff;

    --orange: #ff642f;
    --yellow: #ffcb24;
    --blue: #2877f5;
    --pink: #ec4a9e;
    --green: #b9f34a;

    --muted: #707781;

    --line: rgba(17, 23, 34, .12);
    --line-dark: rgba(255, 255, 255, .12);

    --side: clamp(22px, 5vw, 82px);
    --header-height: 82px;

    --radius: 28px;
}


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

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: var(--cream);
    color: var(--ink);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button {
    cursor: pointer;
}

::selection {
    background: var(--yellow);
    color: var(--ink);
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.skip-link {
    position: fixed;

    top: 12px;
    left: 12px;

    z-index: 9999;

    padding: 10px 14px;

    background: var(--ink);
    color: white;

    transform: translateY(-150%);

    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}


/* =========================================================
   SCROLL PROGRESS
========================================================= */

.scroll-progress {
    position: fixed;

    top: 0;
    left: 0;

    z-index: 999;

    width: 0;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--orange),
            var(--yellow),
            var(--blue)
        );
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 200;

    height: var(--header-height);

    padding: 0 var(--side);

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

    border-bottom:
        1px solid
        rgba(17, 23, 34, .07);

    background:
        rgba(247, 243, 235, .78);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    transition:
        background .3s ease,
        box-shadow .3s ease;
}

.site-header.is-scrolled {
    background:
        rgba(247, 243, 235, .94);

    box-shadow:
        0 8px 40px
        rgba(17, 23, 34, .06);
}

.brand {
    display: flex;

    align-items: center;

    gap: 11px;

    width: max-content;
}

.brand-symbol {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            var(--yellow),
            var(--orange)
        );

    font-size: 22px;
    font-weight: 800;
}

.brand-copy {
    display: flex;

    flex-direction: column;

    line-height: 1;
}

.brand-copy strong {
    font-size: 15px;

    letter-spacing: .12em;
}

.brand-copy small {
    margin-top: 5px;

    color: var(--muted);

    font-size: 8px;

    letter-spacing: .19em;
}

.desktop-nav {
    display: flex;

    gap:
        clamp(
            24px,
            3vw,
            48px
        );

    font-size: 12px;
}

.desktop-nav a {
    position: relative;

    padding: 8px 0;
}

.desktop-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    background: var(--orange);

    transform:
        scaleX(0);

    transform-origin:
        right;

    transition:
        transform .25s ease;
}

.desktop-nav a:hover::after {
    transform:
        scaleX(1);

    transform-origin:
        left;
}

.header-actions {
    justify-self: end;

    display: flex;

    align-items: center;

    gap: 18px;
}

.language-switcher {
    display: flex;

    gap: 9px;

    font-size: 10px;

    font-weight: 700;
}

.language-switcher a {
    opacity: .45;
}

.language-switcher a[aria-current="page"] {
    opacity: 1;

    color: var(--orange);
}

.header-cta {
    padding: 12px 18px;

    border-radius: 999px;

    background: var(--ink);
    color: white;

    font-size: 11px;

    font-weight: 700;

    transition:
        transform .2s ease,
        background .2s ease;
}

.header-cta:hover {
    background: var(--orange);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 0;

    background: transparent;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 6px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;

    background: var(--ink);

    transition:
        transform .25s ease;
}

.menu-toggle.active span:first-child {
    transform:
        translateY(4px)
        rotate(45deg);
}

.menu-toggle.active span:last-child {
    transform:
        translateY(-4px)
        rotate(-45deg);
}

.mobile-menu {
    position: fixed;

    inset: 0;

    z-index: 150;

    padding:
        calc(var(--header-height) + 45px)
        var(--side)
        35px;

    background: var(--cream);

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    visibility: hidden;

    opacity: 0;

    transform:
        translateY(-15px);

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;
}

.mobile-menu.open {
    visibility: visible;

    opacity: 1;

    transform: translateY(0);
}

.mobile-menu nav {
    display: flex;

    flex-direction: column;
}

.mobile-menu nav a {
    padding: 12px 0;

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

    font-size:
        clamp(
            42px,
            12vw,
            76px
        );

    line-height: .95;

    letter-spacing: -.06em;
}

.mobile-menu-languages {
    align-self: flex-start;

    direction: ltr;

    gap: 10px;

    font-size: 12px;
}

.mobile-menu-languages a {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

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

    border-radius: 50%;
}

.mobile-menu-languages
a[aria-current="page"] {
    background: var(--orange);
    color: var(--ink);
}

.mobile-menu-bottom {
    display: flex;

    justify-content: space-between;

    color: var(--muted);

    font-size: 9px;

    letter-spacing: .12em;
}


/* =========================================================
   COMMON
========================================================= */

.eyebrow {
    margin: 0;

    color: var(--orange);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .16em;

    text-transform: uppercase;
}

.section-heading {
    max-width: 850px;

    margin-bottom:
        clamp(
            50px,
            7vw,
            90px
        );
}

.section-heading h2,
.studio-copy h2,
.security-heading h2,
.contact-heading h2,
.capabilities-copy h2 {
    margin:
        18px
        0
        0;

    font-size:
        clamp(
            45px,
            6vw,
            96px
        );

    line-height: .9;

    letter-spacing: -.06em;

    font-weight: 700;
}

.section-heading h2 em,
.studio-copy h2 em,
.security-heading h2 em,
.contact-heading h2 em,
.capabilities-copy h2 em {
    display: block;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-weight: 400;

    color: var(--orange);
}


/* =========================================================
   BUTTONS
========================================================= */

.button {
    min-height: 48px;

    padding:
        0
        22px;

    display: inline-flex;

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

    border-radius: 999px;

    font-size: 12px;

    font-weight: 700;

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

    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease;
}

.button-dark {
    background: var(--ink);

    color: white;

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

.button-dark:hover {
    background: var(--orange);

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

.button-light {
    background: white;
}

.button-light:hover {
    background: var(--yellow);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 100svh;

    padding:
        calc(var(--header-height) + 65px)
        var(--side)
        80px;

    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    gap:
        clamp(
            40px,
            7vw,
            110px
        );

    align-items: center;

    overflow: hidden;
}

.hero-title {
    margin:
        22px
        0
        28px;

    display: flex;

    flex-direction: column;

    font-size:
        clamp(
            68px,
            7.6vw,
            145px
        );

    line-height: .78;

    letter-spacing: -.075em;

    font-weight: 800;
}

.hero-title span {
    display: block;
}

.hero-accent {
    color: var(--orange);
}

.hero-description {
    max-width: 590px;

    margin:
        0
        0
        30px;

    color: #4c5562;

    font-size:
        clamp(
            16px,
            1.4vw,
            20px
        );

    line-height: 1.55;
}

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}

.hero-points {
    margin-top: 45px;

    display: flex;

    flex-wrap: wrap;

    gap: 26px;
}

.hero-points span {
    position: relative;

    padding-left: 20px;

    color: var(--muted);

    font-size: 11px;
}

.hero-points span::before {
    content: "";

    position: absolute;

    left: 0;
    top: 4px;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: var(--yellow);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    min-height:
        min(
            640px,
            65vw
        );

    display: flex;

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

.hero-shape {
    position: absolute;

    border-radius: 34px;
}

.hero-shape-yellow {
    width: 55%;
    height: 55%;

    right: 3%;
    top: 12%;

    background:
        linear-gradient(
            145deg,
            #ffd92d,
            #ffae18
        );

    border-radius: 50%;
}

.hero-shape-orange {
    width: 48%;
    height: 52%;

    left: 10%;
    top: 20%;

    background:
        linear-gradient(
            145deg,
            #ff845a,
            #ff5d2d
        );

    transform:
        rotate(-8deg);
}

.hero-shape-blue {
    width: 34%;
    height: 45%;

    left: 30%;
    bottom: 6%;

    background:
        linear-gradient(
            145deg,
            #448cff,
            #0f5bea
        );

    transform:
        rotate(12deg);
}

.hero-lightbulb {
    position: absolute;

    top: 6%;
    left: 14%;

    width: 130px;
    height: 130px;

    display: grid;

    place-items: center;

    border-radius:
        50% 50%
        44% 44%;

    background: var(--yellow);

    box-shadow:
        0 20px 60px
        rgba(255, 203, 36, .35);

    z-index: 4;

    transform:
        rotate(-8deg);
}

.hero-lightbulb span {
    font-size: 56px;

    color: var(--ink);
}

.hero-screen {
    position: relative;

    z-index: 5;

    width: 72%;
    height: 350px;

    padding: 28px;

    display: flex;

    flex-direction: column;

    border:
        12px solid
        #303740;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #141a22,
            #090d12
        );

    color: white;

    box-shadow:
        0 30px 80px
        rgba(17,23,34,.3);

    transform:
        rotate(-1deg);
}

.hero-screen-top {
    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 13px;

    letter-spacing: .14em;
}

.hero-screen-top small {
    opacity: .55;

    font-size: 8px;
}

.hero-screen-center {
    flex: 1;

    display: grid;

    place-items: center;

    text-align: center;
}

.hero-screen-center strong {
    max-width: 360px;

    font-size:
        clamp(
            30px,
            3.6vw,
            58px
        );

    line-height: .88;

    letter-spacing: -.04em;
}

.hero-screen-center em {
    display: block;

    margin-top: 7px;

    font-family:
        Georgia,
        serif;

    color: var(--yellow);

    font-weight: 400;
}

.hero-phone {
    position: absolute;

    right: 4%;
    bottom: 9%;

    z-index: 7;

    width: 170px;
    height: 285px;

    padding: 40px 18px;

    display: flex;

    flex-direction: column;

    gap: 10px;

    border:
        8px solid
        #2b3139;

    border-radius: 28px;

    background:
        linear-gradient(
            180deg,
            #131921,
            #05080c
        );

    color: white;

    box-shadow:
        0 30px 70px
        rgba(0,0,0,.28);

    transform:
        rotate(4deg);
}

.hero-phone strong {
    font-size: 14px;

    font-weight: 500;
}

.hero-note {
    position: absolute;

    right: 0;
    top: 12%;

    z-index: 8;

    padding:
        22px
        20px;

    background:
        #fff0a8;

    border-radius: 20px;

    font-family:
        Georgia,
        serif;

    font-style: italic;

    font-size: 18px;

    line-height: 1.25;

    transform:
        rotate(5deg);

    box-shadow:
        0 18px 45px
        rgba(17,23,34,.08);
}


/* =========================================================
   MARQUEE
========================================================= */

.marquee {
    overflow: hidden;

    padding: 17px 0;

    background: var(--yellow);

    border-top:
        1px solid
        rgba(17,23,34,.1);

    border-bottom:
        1px solid
        rgba(17,23,34,.1);
}

.marquee-track {
    display: flex;

    width: max-content;

    gap: 28px;

    align-items: center;

    animation:
        marquee
        30s
        linear
        infinite;
}

.marquee-track span {
    font-size: 11px;

    font-weight: 800;

    letter-spacing: .12em;
}

.marquee-track i {
    color: var(--orange);

    font-style: normal;
}

@keyframes marquee {
    to {
        transform:
            translateX(-50%);
    }
}


/* =========================================================
   EXPERTISE
========================================================= */

.expertise-section {
    padding:
        130px
        var(--side);

    background: var(--cream);
}

.service-accordion {
    min-height: 610px;

    display: flex;

    gap: 14px;

    overflow: hidden;
}

.service-panel {
    position: relative;

    flex:
        0 0 96px;

    min-width: 96px;

    overflow: hidden;

    border-radius: 28px;

    transition:
        flex-basis
        .65s
        cubic-bezier(.2,.7,.2,1),

        background
        .4s ease;
}

.service-panel:nth-child(1) {
    background: var(--yellow);
}

.service-panel:nth-child(2) {
    background: var(--blue);
}

.service-panel:nth-child(3) {
    background: var(--orange);
}

.service-panel:nth-child(4) {
    background: var(--pink);
}

.service-panel:nth-child(5) {
    background: var(--green);
}

.service-panel.is-active {
    flex:
        1 1 auto;
}

.service-tab {
    position: absolute;

    inset: 0 auto 0 0;

    z-index: 10;

    width: 96px;

    padding: 24px 0;

    border: 0;

    background: transparent;

    display: flex;

    align-items: flex-end;
    justify-content: center;
}

.service-tab span {
    writing-mode: vertical-rl;

    transform:
        rotate(180deg);

    font-size: 18px;

    font-weight: 700;
}

.service-panel.is-active .service-tab {
    visibility: hidden;

    pointer-events: none;
}

.service-panel-content {
    height: 100%;

    min-width: 780px;

    padding:
        70px
        70px
        55px;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 55px;

    align-items: center;

    opacity: 0;

    transform:
        translateX(40px);

    transition:
        opacity .4s ease .15s,
        transform .5s ease .15s;
}

.service-panel.is-active
.service-panel-content {
    opacity: 1;

    transform:
        translateX(0);
}

.service-kicker {
    margin:
        0
        0
        20px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .14em;

    text-transform: uppercase;
}

.service-panel h3 {
    margin:
        0
        0
        22px;

    max-width: 540px;

    font-size:
        clamp(
            44px,
            5vw,
            82px
        );

    line-height: .9;

    letter-spacing: -.055em;
}

.service-panel p {
    max-width: 540px;

    margin:
        0
        0
        30px;

    font-size:
        16px;

    line-height: 1.5;
}

.service-panel-content a {
    display: inline-flex;

    padding:
        12px
        18px;

    border:
        1px solid
        rgba(17,23,34,.25);

    border-radius: 999px;

    font-size: 12px;

    font-weight: 700;
}

.service-art {
    aspect-ratio: 1;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.25);

    box-shadow:
        inset
        0
        0
        0
        1px
        rgba(255,255,255,.25);

    transform:
        rotate(-8deg);
}

.service-art span {
    font-size:
        clamp(
            36px,
            5vw,
            82px
        );

    font-weight: 900;

    letter-spacing: -.06em;
}


/* =========================================================
   FALLING PILLS
========================================================= */

.capabilities {
    min-height: 780px;

    padding:
        120px
        var(--side);

    background: white;
}

.capabilities-copy {
    max-width: 850px;
}

.pill-stage {
    position: relative;

    height: 450px;

    margin-top: 65px;

    overflow: hidden;

    border-bottom:
        1px solid var(--line);
}

.falling-pill {
    position: absolute;

    top: -100px;

    min-width: 180px;

    padding:
        17px
        28px;

    text-align: center;

    border-radius: 999px;

    background:
        #f1f3f6;

    border:
        1px solid
        rgba(17,23,34,.05);

    box-shadow:
        0 10px 25px
        rgba(17,23,34,.03);

    font-size: 15px;

    opacity: 0;

    transform:
        translateY(-80px)
        rotate(0deg);

    transition:
        transform
        1.2s
        cubic-bezier(.22,.8,.25,1),

        opacity .4s ease;
}

.pill-stage.is-active
.falling-pill {
    opacity: 1;
}

.falling-pill:nth-child(1) {
    left: 3%;

    --y: 310px;
    --r: -6deg;

    transition-delay: .02s;
}

.falling-pill:nth-child(2) {
    left: 24%;

    --y: 355px;
    --r: 2deg;

    transition-delay: .08s;
}

.falling-pill:nth-child(3) {
    left: 43%;

    --y: 290px;
    --r: -18deg;

    transition-delay: .14s;
}

.falling-pill:nth-child(4) {
    left: 62%;

    --y: 350px;
    --r: 3deg;

    transition-delay: .20s;
}

.falling-pill:nth-child(5) {
    left: 78%;

    --y: 295px;
    --r: 7deg;

    transition-delay: .26s;
}

.falling-pill:nth-child(6) {
    left: 12%;

    --y: 380px;
    --r: 1deg;

    transition-delay: .32s;
}

.falling-pill:nth-child(7) {
    left: 35%;

    --y: 395px;
    --r: -2deg;

    transition-delay: .38s;
}

.falling-pill:nth-child(8) {
    left: 53%;

    --y: 390px;
    --r: 0deg;

    transition-delay: .44s;
}

.falling-pill:nth-child(9) {
    left: 70%;

    --y: 380px;
    --r: -5deg;

    transition-delay: .50s;
}

.falling-pill:nth-child(10) {
    left: 83%;

    --y: 390px;
    --r: 3deg;

    transition-delay: .56s;
}

.pill-stage.is-active
.falling-pill {
    transform:
        translateY(var(--y))
        rotate(var(--r));
}


/* =========================================================
   PROJECT STACK
========================================================= */

.work-section {
    padding:
        130px
        var(--side)
        170px;

    background:
        var(--ink);

    color: white;
}

.work-heading .eyebrow {
    color: var(--yellow);
}

.work-heading h2 em {
    color: var(--yellow);
}

.project-stack {
    display: flex;

    flex-direction: column;

    gap: 60px;
}

.project-card {
    position: sticky;

    top:
        calc(
            var(--header-height)
            + 20px
        );

    min-height:
        calc(
            100svh
            - var(--header-height)
            - 40px
        );

    padding:
        30px
        38px
        35px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border-radius: 34px;

    overflow: hidden;

    box-shadow:
        0
        45px
        110px
        rgba(0,0,0,.28);
}

.project-stay {
    background:
        linear-gradient(
            145deg,
            #173e32,
            #09261e
        );
}

.project-volca {
    background:
        linear-gradient(
            145deg,
            #625eea,
            #332ec4
        );
}

.project-daba {
    background:
        linear-gradient(
            145deg,
            #101d33,
            #07111f
        );
}

.project-card-top,
.project-card-bottom {
    position: relative;

    z-index: 4;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;
}

.project-card-top h3 {
    margin: 0;

    font-size:
        clamp(
            30px,
            4vw,
            60px
        );

    letter-spacing: -.05em;
}

.project-card-top span {
    font-size: 9px;

    letter-spacing: .14em;
}

.project-device {
    position: relative;

    z-index: 3;

    width: min(80%, 1050px);

    margin: 0 auto;

    border-radius: 20px;

    overflow: hidden;

    border:
        10px solid
        rgba(255,255,255,.16);

    box-shadow:
        0
        35px
        80px
        rgba(0,0,0,.3);

    transform:
        perspective(1200px)
        rotateX(3deg)
        rotateY(-2deg);

    transition:
        transform .45s ease;
}

.project-card:hover
.project-device {
    transform:
        perspective(1200px)
        rotateX(0)
        rotateY(0)
        scale(1.02);
}

.project-device img {
    width: 100%;

    aspect-ratio: 16 / 9;

    object-fit: cover;

    object-position: top center;
}

.project-card-bottom p {
    max-width: 600px;

    margin: 0;

    color:
        rgba(255,255,255,.78);

    line-height: 1.5;
}

.project-card-bottom a,
.project-card-bottom span {
    font-size: 11px;

    font-weight: 700;
}


/* =========================================================
   INDUSTRIES
========================================================= */

.industries-section {
    padding:
        130px
        var(--side);

    background: var(--cream);
}

.industry-grid {
    display: grid;

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

    gap: 14px;
}

.industry-grid article {
    min-height: 230px;

    padding: 24px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    border-radius: 24px;

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

    background: white;

    transition:
        transform .25s ease,
        background .25s ease;
}

.industry-grid article:hover {
    transform:
        translateY(-6px);

    background: var(--yellow);
}

.industry-grid h3 {
    margin:
        0
        0
        8px;

    font-size:
        clamp(
            23px,
            2vw,
            32px
        );

    letter-spacing: -.04em;
}

.industry-grid p {
    margin: 0;

    color: var(--muted);

    font-size: 12px;
}

.industry-special {
    background:
        var(--orange)
        !important;

    color: white;
}

.industry-special p {
    color:
        rgba(255,255,255,.75);
}


/* =========================================================
   STUDIO
========================================================= */

.studio-section {
    padding:
        140px
        var(--side);

    display: grid;

    grid-template-columns:
        1.1fr
        .9fr;

    gap:
        clamp(
            60px,
            8vw,
            140px
        );

    background: white;
}

.studio-text {
    align-self: end;

    color: #535c68;

    font-size:
        clamp(
            17px,
            1.6vw,
            23px
        );

    line-height: 1.5;
}

.studio-text p {
    margin:
        0
        0
        24px;
}

.studio-text strong {
    color: var(--ink);
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    padding:
        130px
        var(--side);

    background: var(--cream);
}

.process-grid {
    display: grid;

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

    border-top:
        1px solid var(--line);

    border-left:
        1px solid var(--line);
}

.process-grid article {
    min-height: 230px;

    padding: 26px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    border-right:
        1px solid var(--line);

    border-bottom:
        1px solid var(--line);
}

.process-grid h3 {
    margin:
        0
        0
        12px;

    font-size:
        clamp(
            24px,
            2.5vw,
            38px
        );

    letter-spacing: -.04em;
}

.process-grid p {
    margin: 0;

    max-width: 270px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.45;
}


/* =========================================================
   SECURITY
========================================================= */

.security-section {
    padding:
        135px
        var(--side);

    display: grid;

    grid-template-columns:
        1.1fr
        .9fr;

    gap:
        clamp(
            60px,
            9vw,
            160px
        );

    background: var(--ink);

    color: white;
}

.security-heading .eyebrow {
    color: var(--yellow);
}

.security-heading h2 em {
    color: var(--yellow);
}

.security-content {
    align-self: end;
}

.security-content > p {
    margin:
        0
        0
        42px;

    color:
        rgba(255,255,255,.72);

    font-size:
        clamp(
            17px,
            1.7vw,
            23px
        );
}

.security-content ul {
    margin: 0;

    padding: 0;

    list-style: none;

    border-top:
        1px solid
        var(--line-dark);
}

.security-content li {
    padding:
        13px
        0;

    border-bottom:
        1px solid
        var(--line-dark);

    font-size: 11px;

    letter-spacing: .08em;

    text-transform: uppercase;
}


/* =========================================================
   LOCATIONS
========================================================= */

.locations-section {
    padding:
        130px
        var(--side);

    background:
        #eef1d9;
}

.location-title {
    margin:
        55px
        0;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

    font-size:
        clamp(
            56px,
            9vw,
            150px
        );

    font-weight: 800;

    line-height: .8;

    letter-spacing: -.075em;
}

.location-title i {
    color: var(--orange);

    font-family:
        Georgia,
        serif;

    font-weight: 400;

    font-size: .34em;
}

.location-copy {
    max-width: 650px;

    margin-left: auto;

    color: #59615b;

    font-size:
        clamp(
            17px,
            1.7vw,
            23px
        );

    line-height: 1.5;
}


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

.contact-section {
    padding:
        130px
        var(--side);

    background: white;
}

.contact-heading {
    max-width: 900px;

    margin-bottom: 75px;
}

.contact-heading > p:last-child {
    max-width: 560px;

    color: var(--muted);

    line-height: 1.5;
}

.contact-layout {
    display: grid;

    grid-template-columns:
        1.25fr
        .75fr;

    gap:
        clamp(
            50px,
            8vw,
            120px
        );
}

.contact-form {
    padding: 34px;

    border-radius: 28px;

    background:
        #f5f6f7;
}

.form-row {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 16px;
}

.contact-form label {
    display: block;

    margin-bottom: 18px;
}

.contact-form label > span {
    display: block;

    margin-bottom: 8px;

    font-size: 11px;

    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;

    padding:
        14px
        15px;

    border:
        1px solid
        rgba(17,23,34,.13);

    border-radius: 12px;

    background: white;

    color: var(--ink);

    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--blue);

    box-shadow:
        0
        0
        0
        3px
        rgba(40,119,245,.1);
}

.contact-form textarea {
    resize: vertical;
}

.honeypot {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;

    clip:
        rect(0 0 0 0);

    clip-path:
        inset(50%);
}

.form-status {
    margin-bottom: 15px;

    font-size: 13px;
}

.form-status.success {
    color: #1f7b42;
}

.form-status.error {
    color: #bf2f2f;
}

.direct-contact {
    display: flex;

    flex-direction: column;

    justify-content: flex-end;
}

.direct-contact > p {
    margin:
        0
        0
        30px;

    color: var(--muted);

    font-size: 18px;
}

.direct-contact > a {
    padding:
        22px
        0;

    display: flex;

    flex-direction: column;

    gap: 8px;

    border-top:
        1px solid var(--line);
}

.direct-contact > a:last-of-type {
    border-bottom:
        1px solid var(--line);
}

.direct-contact small {
    color: var(--muted);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .12em;
}

.direct-contact strong {
    font-size:
        clamp(
            18px,
            2vw,
            28px
        );
}

.direct-location {
    margin-top: 40px;

    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.direct-location span {
    padding:
        8px
        13px;

    border-radius: 999px;

    background: var(--cream-2);

    font-size: 10px;
}

.whatsapp-link.is-hidden {
    display: none;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding:
        65px
        var(--side)
        25px;

    display: grid;

    grid-template-columns:
        1fr
        auto;

    gap: 45px;

    background: var(--yellow);
}

.footer-brand {
    display: flex;

    flex-direction: column;
}

.footer-brand strong {
    font-size:
        clamp(
            52px,
            8vw,
            120px
        );

    line-height: .8;

    letter-spacing: -.075em;
}

.footer-brand span {
    margin-top: 15px;

    font-size: 9px;

    letter-spacing: .18em;
}

.footer-nav {
    display: flex;

    align-items: flex-start;

    gap: 24px;

    font-size: 11px;
}

.footer-bottom {
    grid-column:
        1 / -1;

    padding-top: 20px;

    display: flex;

    justify-content: space-between;

    border-top:
        1px solid
        rgba(17,23,34,.15);

    color:
        rgba(17,23,34,.62);

    font-size: 9px;

    letter-spacing: .08em;
}


/* =========================================================
   REVEALS
========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(32px);

    transition:
        opacity
        .75s
        cubic-bezier(.2,.7,.2,1),

        transform
        .75s
        cubic-bezier(.2,.7,.2,1);
}

.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .site-header {
        grid-template-columns:
            1fr
            auto
            auto;

        gap: 12px;
    }

    .header-actions {
        display: flex;
    }

    .header-actions .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

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

        padding-top:
            calc(
                var(--header-height)
                + 70px
            );
    }

    .hero-visual {
        min-height: 600px;
    }

    .service-accordion {
        flex-direction: column;

        min-height: auto;
    }

    .service-panel {
        min-width: 0;

        flex:
            0 0 82px;

        min-height: 82px;
    }

    .service-panel.is-active {
        flex:
            0 0 560px;
    }

    .service-tab {
        position: relative;

        width: 100%;
        height: 82px;

        padding:
            0 24px;

        justify-content: flex-start;
    }

    .service-tab span {
        writing-mode: horizontal-tb;

        transform: none;
    }

    .service-panel-content {
        min-width: 0;

        height: calc(100% - 0px);

        padding:
            48px;

        grid-template-columns:
            1fr
            .7fr;
    }

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

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    :root {
        --header-height: 70px;
    }

    .site-header .language-switcher {
        gap: 7px;

        font-size: 9px;
    }

    .hero {
        min-height: auto;

        padding:
            calc(
                var(--header-height)
                + 50px
            )
            var(--side)
            80px;
    }

    .hero-title {
        font-size:
            clamp(
                58px,
                17vw,
                90px
            );
    }

    .hero-points {
        gap: 16px;
    }

    .hero-visual {
        min-height: 490px;
    }

    .hero-screen {
        width: 80%;
        height: 270px;

        padding: 18px;
    }

    .hero-phone {
        width: 130px;
        height: 230px;

        right: 0;

        padding:
            34px 12px;

        border-width: 6px;
    }

    .hero-phone strong {
        font-size: 11px;
    }

    .hero-note {
        display: none;
    }

    .hero-lightbulb {
        width: 95px;
        height: 95px;
    }

    .expertise-section,
    .capabilities,
    .work-section,
    .industries-section,
    .studio-section,
    .process-section,
    .security-section,
    .locations-section,
    .contact-section {
        padding:
            90px
            var(--side);
    }

    .section-heading h2,
    .studio-copy h2,
    .security-heading h2,
    .contact-heading h2,
    .capabilities-copy h2 {
        font-size:
            clamp(
                48px,
                14vw,
                78px
            );
    }

    .service-panel.is-active {
        flex-basis: 600px;
    }

    .service-panel-content {
        padding:
            36px
            28px;

        grid-template-columns: 1fr;
    }

    .service-art {
        width: 210px;

        justify-self: center;
    }

    .pill-stage {
        height: 480px;
    }

    .falling-pill {
        min-width: 135px;

        padding:
            13px
            18px;

        font-size: 12px;
    }

    .falling-pill:nth-child(n) {
        left: auto;
    }

    .falling-pill:nth-child(1) {
        left: 2%;
        --y: 300px;
    }

    .falling-pill:nth-child(2) {
        left: 45%;
        --y: 335px;
    }

    .falling-pill:nth-child(3) {
        left: 22%;
        --y: 370px;
    }

    .falling-pill:nth-child(4) {
        left: 52%;
        --y: 400px;
    }

    .falling-pill:nth-child(5) {
        left: 5%;
        --y: 405px;
    }

    .falling-pill:nth-child(6) {
        left: 58%;
        --y: 295px;
    }

    .falling-pill:nth-child(7) {
        left: 29%;
        --y: 420px;
    }

    .falling-pill:nth-child(8) {
        left: 7%;
        --y: 350px;
    }

    .falling-pill:nth-child(9) {
        left: 48%;
        --y: 450px;
    }

    .falling-pill:nth-child(10) {
        left: 20%;
        --y: 330px;
    }

    .project-card {
        position: relative;

        top: auto;

        min-height: auto;

        padding:
            24px
            20px
            28px;

        gap: 35px;
    }

    .project-card-top {
        align-items: flex-start;

        flex-direction: column;

        gap: 8px;
    }

    .project-device {
        width: 100%;

        border-width: 6px;

        transform: none;
    }

    .project-card-bottom {
        align-items: flex-start;

        flex-direction: column;
    }

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

    .industry-grid article {
        min-height: 170px;
    }

    .studio-section,
    .security-section {
        grid-template-columns: 1fr;

        gap: 55px;
    }

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

    .process-grid article {
        min-height: 180px;
    }

    .location-title {
        flex-direction: column;

        align-items: flex-start;
    }

    .location-title i {
        transform:
            rotate(90deg);
    }

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

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

    .contact-form {
        padding: 22px;
    }

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

    .footer-nav {
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 10px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior:
            auto !important;

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;
    }

    .reveal {
        opacity: 1;

        transform: none;
    }

    .falling-pill {
        opacity: 1;

        position: relative;

        top: auto;
        left: auto !important;

        transform: none !important;
    }

}
/* =========================================================
   VALORA V2.1 — VISUAL POLISH
========================================================= */

/* HERO */
.hero {
    padding-top: calc(var(--header-height) + 90px);
}

.hero-copy {
    max-width: 880px;
}

.hero-title {
    gap: .035em;
}

.hero-description {
    margin-top: 10px;
}

.hero-visual {
    transform-origin: center;
}

.hero-screen {
    box-shadow:
        0 35px 90px rgba(17,23,34,.26),
        0 0 0 1px rgba(255,255,255,.08);
}

.hero-phone {
    box-shadow:
        0 30px 70px rgba(17,23,34,.32);
}


/* EXPERTISE */
.service-accordion {
    gap: 10px;
}

.service-panel {
    flex-basis: 112px;
    min-width: 112px;
}

.service-tab {
    width: 112px;
}

.service-tab span {
    font-size: 16px;
    letter-spacing: -.02em;
}

.service-panel.is-active {
    box-shadow:
        0 30px 70px rgba(17,23,34,.10);
}

.service-art {
    position: relative;
    overflow: hidden;
}

.service-art::after {
    content: "";
    position: absolute;
    width: 38%;
    height: 38%;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    top: 10%;
    right: 10%;
    filter: blur(4px);
}


/* FALLING PILLS */
.capabilities {
    min-height: 650px;
}

.pill-stage {
    height: 330px;
    margin-top: 35px;
}

.falling-pill {
    min-width: 165px;
    padding: 15px 25px;
    font-weight: 700;
    background: #f2f4f6;
    box-shadow:
        0 12px 30px rgba(17,23,34,.07);
}

.falling-pill:nth-child(1),
.falling-pill:nth-child(6) {
    background: var(--yellow);
}

.falling-pill:nth-child(3),
.falling-pill:nth-child(8) {
    background: #dbe8ff;
}

.falling-pill:nth-child(4),
.falling-pill:nth-child(10) {
    background: #ffe0d5;
}


/* PROJECTS */
.project-stack {
    gap: 90px;
}

.project-card {
    border: 1px solid rgba(255,255,255,.08);
}

.project-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(255,255,255,.12),
            transparent 30%
        );
}

.project-card-top,
.project-card-bottom,
.project-device {
    position: relative;
    z-index: 2;
}


/* INDUSTRIES */
.industry-grid {
    gap: 10px;
}

.industry-grid article {
    position: relative;
    overflow: hidden;
    min-height: 260px;
}

.industry-grid article::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    top: 20px;
    right: 20px;
    background: var(--cream);
    transition:
        transform .35s ease,
        background .35s ease;
}

.industry-grid article:nth-child(2)::before {
    background: #dce9ff;
}

.industry-grid article:nth-child(3)::before {
    background: #ffe3d8;
}

.industry-grid article:nth-child(4)::before {
    background: #fff0a7;
}

.industry-grid article:nth-child(5)::before {
    background: #e2f6cc;
}

.industry-grid article:nth-child(6)::before {
    background: #eee5ff;
}

.industry-grid article:hover::before {
    transform: scale(1.8);
}

.industry-grid h3,
.industry-grid p {
    position: relative;
    z-index: 2;
}


/* PROCESS */
.process-grid {
    gap: 12px;
    border: 0;
}

.process-grid article {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,.65);
    transition:
        transform .3s ease,
        background .3s ease;
}

.process-grid article::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--orange);
}

.process-grid article:nth-child(2)::before,
.process-grid article:nth-child(5)::before {
    background: var(--blue);
}

.process-grid article:nth-child(3)::before,
.process-grid article:nth-child(6)::before {
    background: var(--yellow);
}

.process-grid article:hover {
    transform: translateY(-7px);
    background: white;
}


/* LOCATIONS */
.locations-section {
    position: relative;
    overflow: hidden;
}

.locations-section::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    right: -120px;
    bottom: -170px;
    background: var(--yellow);
    opacity: .8;
}


/* CONTACT */
.contact-layout {
    align-items: stretch;
}

.contact-form {
    box-shadow:
        0 20px 70px rgba(17,23,34,.06);
}

.direct-contact {
    padding: 35px;
    border-radius: 28px;
    background: var(--ink);
    color: white;
}

.direct-contact > p,
.direct-contact small {
    color: rgba(255,255,255,.55);
}

.direct-contact > a {
    border-color: rgba(255,255,255,.12);
}

.direct-contact > a:last-of-type {
    border-color: rgba(255,255,255,.12);
}

.direct-location span {
    background: rgba(255,255,255,.10);
}


/* FOOTER */
.site-footer {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    align-items: end;
}

.site-footer::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -90px;
    top: -180px;
    border-radius: 50%;
    background: var(--orange);
    opacity: .92;
}

.footer-brand,
.footer-nav,
.footer-bottom {
    position: relative;
    z-index: 2;
}


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

    .hero {
        padding-top: calc(var(--header-height) + 65px);
    }

    .service-panel {
        min-width: 0;

        flex:
            0 0 82px;

        min-height: 82px;
    }

    .service-panel.is-active {
        flex-basis: 600px;
    }

    .service-tab {
        width: 100%;
        height: 82px;
    }

    .industry-grid article {
        min-height: 190px;
    }

    .pill-stage {
        height: 360px;
    }

    .direct-contact {
        padding: 25px;
    }
}
/* =========================================================
   VALORA V2.2 — MOTION
========================================================= */

/* FALLING PILLS — BIGGER / PHYSICAL */

.pill-stage {
    height: 380px;
    overflow: hidden;
}

.falling-pill {
    min-width: clamp(150px, 15vw, 235px);
    padding: 17px 28px;

    font-size: clamp(13px, 1.15vw, 17px);
    font-weight: 800;

    border: 1px solid rgba(17,23,34,.07);

    box-shadow:
        0 16px 35px rgba(17,23,34,.09);

    will-change: transform;
}

.falling-pill:nth-child(1) {
    background: var(--yellow);
}

.falling-pill:nth-child(2) {
    background: #f3f4f6;
}

.falling-pill:nth-child(3) {
    background: #dce9ff;
}

.falling-pill:nth-child(4) {
    background: #ffe0d5;
}

.falling-pill:nth-child(5) {
    background: #f4e6ff;
}

.falling-pill:nth-child(6) {
    background: #def4cf;
}

.falling-pill:nth-child(7) {
    background: #f4f4f4;
}

.falling-pill:nth-child(8) {
    background: #dce9ff;
}

.falling-pill:nth-child(9) {
    background: #fff0a7;
}

.falling-pill:nth-child(10) {
    background: #ffe0d5;
}


/* PROJECT STACK */

.project-card {
    --stack-scale: 1;
    --stack-y: 0px;
    --stack-opacity: 1;

    transform:
        translateY(var(--stack-y))
        scale(var(--stack-scale));

    opacity: var(--stack-opacity);

    transform-origin: center top;

    transition:
        transform .12s linear,
        opacity .12s linear;

    will-change:
        transform,
        opacity;
}

.project-card::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(0,0,0,.12)
        );

    pointer-events: none;
}


/* DEVICE FLOAT */

.project-device {
    --device-y: 0px;
    --device-scale: 1;

    transform:
        perspective(1400px)
        translateY(var(--device-y))
        rotateX(2deg)
        scale(var(--device-scale));

    transition:
        transform .1s linear;
}


/* BACK CARD DEPTH */

.project-card:not(:last-child) {
    box-shadow:
        0 45px 110px rgba(0,0,0,.36);
}


/* MOBILE = NO STICKY EFFECT */

@media (max-width: 760px) {

    .project-card,
    .project-device {
        transform: none !important;
        opacity: 1 !important;
    }

    .pill-stage {
        height: 390px;
    }

    .falling-pill {
        min-width: 135px;
        padding: 14px 19px;
    }
}
/* =========================================================
   MOBILE HERO FIX
========================================================= */

@media (max-width: 760px) {

    .hero-copy {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .hero-title {
        width: 100%;
        max-width: 100%;

        font-size: clamp(50px, 13.8vw, 68px);

        line-height: .84;
        letter-spacing: -.065em;

        overflow: visible;
    }

    .hero-title span {
        max-width: 100%;
    }

    .hero-description {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.5;
    }

    .hero-actions {
        gap: 9px;
    }

    .hero-actions .button {
        min-height: 46px;
        padding: 0 18px;
        font-size: 11px;
    }

    .hero-points {
        margin-top: 32px;
        gap: 12px 18px;
    }

    .hero-points span {
        font-size: 10px;
    }

}
/* =========================================================
   ARABIC / RTL — VALORA
========================================================= */

.lang-ar {
    font-family:
        "Tajawal",
        "Segoe UI",
        Arial,
        sans-serif;

    font-weight: 500;
}


/* TITLES */

.lang-ar .hero-title,
.lang-ar .section-heading h2,
.lang-ar .studio-copy h2,
.lang-ar .security-heading h2,
.lang-ar .contact-heading h2,
.lang-ar .capabilities-copy h2,
.lang-ar .service-panel h3,
.lang-ar .location-title,
.lang-ar .industry-grid h3,
.lang-ar .process-grid h3 {
    font-family:
        "Cairo",
        "Tajawal",
        sans-serif;

    font-style: normal;

    font-weight: 700;

    letter-spacing: 0;

    line-height: 1.18;
}


/* HERO TITLE */

.lang-ar .hero-title {
    line-height: 1.12;

    letter-spacing: 0;
}

.lang-ar .hero-title span {
    margin-bottom: .08em;
}

.lang-ar .hero-accent {
    font-family:
        "Cairo",
        "Tajawal",
        sans-serif;

    font-weight: 700;

    letter-spacing: 0;
}


/* ITALIC / ACCENT TITLES */

.lang-ar .section-heading h2 em,
.lang-ar .studio-copy h2 em,
.lang-ar .security-heading h2 em,
.lang-ar .contact-heading h2 em,
.lang-ar .capabilities-copy h2 em {
    font-family:
        "Cairo",
        "Tajawal",
        sans-serif;

    font-style: normal;

    font-weight: 600;

    letter-spacing: 0;

    line-height: 1.25;

    margin-top: .08em;
}


/* PARAGRAPHS */

.lang-ar p {
    line-height: 1.8;
}


/* EYEBROWS */

.lang-ar .eyebrow {
    font-family:
        "Tajawal",
        sans-serif;

    font-weight: 700;

    letter-spacing: 0;
}


/* HEADER / NAV */

.lang-ar .desktop-nav,
.lang-ar .mobile-menu nav,
.lang-ar .header-cta,
.lang-ar .language-switcher {
    font-family:
        "Tajawal",
        sans-serif;
}


/* SERVICE ACCORDION */

.lang-ar .service-panel-content {
    direction: rtl;
}

.lang-ar .service-tab span {
    font-family:
        "Cairo",
        "Tajawal",
        sans-serif;

    font-weight: 600;

    letter-spacing: 0;

    direction: rtl;
}

.lang-ar .service-kicker {
    direction: ltr;

    text-align: right;
}


/* PILLS */

.lang-ar .falling-pill {
    font-family:
        "Tajawal",
        sans-serif;

    font-weight: 700;

    letter-spacing: 0;
}


/* PROJECTS */

.lang-ar .project-card-top,
.lang-ar .project-card-bottom {
    direction: rtl;
}

.lang-ar .project-card-top h3 {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    letter-spacing: -.04em;
}


/* INDUSTRIES */

.lang-ar .industry-grid article {
    text-align: right;
}

.lang-ar .industry-grid h3 {
    line-height: 1.3;
}


/* PROCESS */

.lang-ar .process-grid article {
    text-align: right;
}

.lang-ar .process-grid h3 {
    line-height: 1.3;
}


/* SECURITY */

.lang-ar .security-content {
    text-align: right;
}

.lang-ar .security-content ul {
    padding: 0;
}


/* CONTACT FORM */

.lang-ar .contact-form {
    text-align: right;
}

.lang-ar .contact-form input,
.lang-ar .contact-form textarea,
.lang-ar .contact-form select {
    font-family:
        "Tajawal",
        sans-serif;

    text-align: right;

    direction: rtl;
}

.lang-ar .contact-form input[type="email"] {
    direction: ltr;

    text-align: left;
}


/* DIRECT CONTACT */

.lang-ar .direct-contact {
    text-align: right;
}


/* KEEP LATIN ELEMENTS LTR */

.lang-ar .hero-screen,
.lang-ar .hero-note,
.lang-ar .brand,
.lang-ar .footer-brand {
    direction: ltr;
}


/* LOCATION */

.lang-ar .location-title {
    line-height: 1.2;
}


/* FOOTER */

.lang-ar .footer-nav {
    font-family:
        "Tajawal",
        sans-serif;
}


/* =========================================================
   ARABIC TABLET
========================================================= */

@media (max-width: 1100px) {

    .lang-ar .service-panel-content {
        text-align: right;
    }

}


/* =========================================================
   ARABIC MOBILE
========================================================= */

@media (max-width: 760px) {

    .lang-ar .hero-title {
        font-size:
            clamp(
                46px,
                12.5vw,
                66px
            );

        line-height: 1.14;

        letter-spacing: 0;
    }

    .lang-ar .hero-title span {
        margin-bottom: .1em;
    }

    .lang-ar .section-heading h2,
    .lang-ar .studio-copy h2,
    .lang-ar .security-heading h2,
    .lang-ar .contact-heading h2,
    .lang-ar .capabilities-copy h2 {
        line-height: 1.2;
    }

    .lang-ar .mobile-menu nav a {
        font-family:
            "Cairo",
            "Tajawal",
            sans-serif;

        letter-spacing: 0;

        line-height: 1.2;
    }

}

/* =========================================================
   ARABIC CONTENT POLISH
========================================================= */

.lang-ar .service-art span {
    font-family: "Cairo", "Tajawal", sans-serif;
    font-size: clamp(24px, 3.2vw, 52px);
    font-weight: 700;
    letter-spacing: 0;
    direction: rtl;
}

.lang-ar .hero-screen-center {
    direction: rtl;
}

.lang-ar .hero-screen-center strong,
.lang-ar .hero-screen-center em {
    font-family: "Cairo", "Tajawal", sans-serif;
    letter-spacing: 0;
}

.lang-ar .hero-screen-center strong {
    line-height: 1.15;
}

.lang-ar .hero-screen-center em {
    margin-top: 8px;
    font-style: normal;
}

.lang-ar .hero-note {
    direction: rtl;
    text-align: right;
    font-family: "Tajawal", sans-serif;
}

.lang-ar .service-kicker {
    direction: rtl;
    text-align: right;
    font-family: "Tajawal", sans-serif;
    letter-spacing: 0;
}


/* =========================================================
   VALORA OFFICIAL LOGO
========================================================= */

.brand {
    display: inline-flex;
    align-items: center;
    width: auto;
}

.brand-logo {
    display: block;

    width: clamp(
        165px,
        13vw,
        195px
    );

    height: auto;
}


/* Old temporary logo elements are no longer used */

.brand-symbol,
.brand-copy {
    display: none;
}


@media (max-width: 760px) {

    .brand-logo {
        width: 150px;
    }

}

/* =========================================================
   VALORA LOGO — DESKTOP SIZE
========================================================= */

@media (min-width: 761px) {

    .brand-logo {
        width: clamp(
            190px,
            15vw,
            225px
        );
    }

}


/* =========================================================
   VALORA OFFICIAL FOOTER
========================================================= */

.site-footer {
    position: relative;

    min-height: 360px;

    padding:
        70px
        var(--side)
        28px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    gap: 70px;

    overflow: hidden;

    background: var(--yellow);

    color: var(--ink);
}

.site-footer::before {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: -110px;
    top: -190px;

    border-radius: 50%;

    background: var(--orange);

    opacity: .95;

    pointer-events: none;
}

.site-footer::after {
    content: "";

    position: absolute;

    width: 210px;
    height: 210px;

    right: 80px;
    bottom: -150px;

    border-radius: 50%;

    background: var(--blue);

    opacity: .95;

    pointer-events: none;
}

.footer-main {
    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 60px;
}

.footer-brand {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    max-width: 520px;
}

.footer-logo {
    display: block;

    width: clamp(
        230px,
        25vw,
        390px
    );

    height: auto;
}

.footer-slogan {
    margin:
        28px
        0
        0;

    font-size:
        clamp(
            15px,
            1.4vw,
            20px
        );

    font-weight: 800;

    letter-spacing: .14em;

    text-transform: uppercase;
}

.footer-nav {
    display: flex;

    flex-wrap: wrap;

    justify-content: flex-end;

    gap:
        14px
        30px;

    font-size: 12px;

    font-weight: 700;
}

.footer-nav a {
    position: relative;

    padding-bottom: 6px;
}

.footer-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    background: var(--ink);

    transform: scaleX(0);

    transform-origin: right;

    transition:
        transform .25s ease;
}

.footer-nav a:hover::after {
    transform: scaleX(1);

    transform-origin: left;
}

.footer-bottom {
    position: relative;

    z-index: 2;

    width: 100%;

    padding-top: 22px;

    display: flex;

    justify-content: space-between;

    gap: 30px;

    border-top:
        1px solid
        rgba(17,23,34,.18);

    color:
        rgba(17,23,34,.68);

    font-size: 10px;

    letter-spacing: .08em;
}


/* Arabic footer */

.lang-ar .footer-main {
    direction: rtl;
}

.lang-ar .footer-brand {
    align-items: flex-start;
}

.lang-ar .footer-slogan {
    font-family:
        "Cairo",
        "Tajawal",
        sans-serif;

    letter-spacing: 0;

    text-transform: none;
}


/* Mobile */

@media (max-width: 760px) {

    .site-footer {
        min-height: auto;

        padding:
            55px
            var(--side)
            24px;

        gap: 55px;
    }

    .footer-main {
        flex-direction: column;

        gap: 40px;
    }

    .footer-logo {
        width: 230px;
    }

    .footer-slogan {
        margin-top: 22px;

        font-size: 13px;

        line-height: 1.4;
    }

    .footer-nav {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 10px;
    }

    .site-footer::before {
        width: 240px;
        height: 240px;

        right: -100px;
        top: -130px;
    }

    .site-footer::after {
        display: none;
    }

}



/* =========================================================
   VALORA FOOTER — LOGO LEFT
========================================================= */

@media (min-width: 761px) {

    .site-footer .footer-main {
        width: 100%;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .site-footer .footer-brand {
        align-items: flex-start;
        text-align: left;
    }

    .site-footer .footer-logo {
        width: clamp(
            260px,
            24vw,
            390px
        );
    }

    .site-footer .footer-slogan {
        margin-top: 22px;

        font-size: clamp(
            13px,
            1.15vw,
            17px
        );

        text-align: left;
    }

    .site-footer .footer-nav {
        justify-content: flex-end;
        text-align: right;
    }


    /* Arabic */

    .lang-ar .footer-main {
        direction: ltr;
        flex-direction: row;
    }

    .lang-ar .footer-brand {
        align-items: flex-start;
        text-align: right;
    }

    .lang-ar .footer-nav {
        direction: rtl;
        justify-content: flex-end;
        text-align: right;
    }

}

/* END VALORA FOOTER — LOGO LEFT */



/* =========================================================
   VALORA FOOTER — CLEAN LOGO CARD
========================================================= */

.site-footer .footer-brand {
    position: relative;
}

.site-footer .footer-brand::before,
.site-footer .footer-brand::after {
    display: none !important;
}

.site-footer .footer-logo {
    display: block;

    width: clamp(
        250px,
        23vw,
        370px
    );

    padding:
        18px
        24px;

    background:
        rgba(255,255,255,.88);

    border:
        1px solid
        rgba(15,23,42,.08);

    border-radius: 22px;

    box-shadow:
        0 16px 40px
        rgba(15,23,42,.10);
}

.site-footer .footer-slogan {
    margin-top: 24px;

    padding-left: 4px;
}


/* Mobile */

@media (max-width: 760px) {

    .site-footer .footer-logo {
        width: 225px;

        padding:
            14px
            18px;

        border-radius: 18px;
    }

}

/* END VALORA FOOTER — CLEAN LOGO CARD */

/* =========================================================
   VALORA FOOTER — FINAL POLISH
========================================================= */

.site-footer .footer-logo {
    width: clamp(
        245px,
        22vw,
        350px
    );

    padding:
        14px
        22px;

    border-radius: 20px;

    box-shadow:
        0 10px 28px
        rgba(15,23,42,.07);
}

.site-footer .footer-slogan {
    margin-top: 17px;

    padding-left: 3px;

    font-size: clamp(
        12px,
        1.05vw,
        16px
    );
}

@media (max-width: 760px) {

    .site-footer .footer-logo {
        width: 215px;

        padding:
            12px
            16px;

        border-radius: 16px;
    }

    .site-footer .footer-slogan {
        margin-top: 14px;
    }

}

/* END VALORA FOOTER — FINAL POLISH */
