@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@10..48,400;10..48,500;10..48,600;10..48,700;10..48,800&family=DM+Sans:wght@400;500;600;700&family=Noto+Sans+Arabic:wght@400;500;600;700&display=swap');

:root {
    --navy: #1d0e47;
    --orange: #f4b21b;
    --ivory: #fefce8;
    --violet: #6c56a4;
    --lime: #c6d92d;
    --sun: #f4e252;
    --display: 'Bricolage Grotesque', 'Noto Sans Arabic', system-ui, sans-serif;
    --sans: 'DM Sans', 'Noto Sans Arabic', system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ivory);
    color: var(--navy);
    font-family: var(--sans);
    overflow-x: hidden;
}

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

button, input, textarea {
    font: inherit;
}

button, a {
    -webkit-tap-highlight-color: transparent;
}

.page-width {
    width: min(100% - 80px, 1440px);
    margin-inline: auto;
}

.site-shell {
    min-height: 100vh;
    background: var(--ivory);
}

.font-arabic, [dir="rtl"] {
    font-family: 'Noto Sans Arabic', var(--sans);
}

.grain::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 50;
    pointer-events: none;
    opacity: .045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s cubic-bezier(.22,1,.36,1);
}

    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-delay-1 {
    transition-delay: .08s;
}

.reveal-delay-2 {
    transition-delay: .16s;
}

.reveal-delay-3 {
    transition-delay: .24s;
}

#logo-img {
    width: 100%;
    height: auto;
}

/* Header and hero */
.hero {
    position: relative;
    min-height: 800px;
    padding: 160px 0 64px;
    overflow: hidden;
    background-color: var(--navy);
    color: var(--ivory);
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(254,252,232,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(254,252,232,.09) 1px, transparent 1px);
        background-size: 44px 44px;
    }

    .hero::after {
        content: "";
        position: absolute;
        width: 360px;
        height: 360px;
        right: -100px;
        top: 120px;
        border-radius: 50%;
        background: rgba(108,86,164,.32);
        filter: blur(70px);
    }

.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 40;
    padding: 28px 40px;
    color: var(--ivory);
    transition: background-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}

    .site-header.is-scrolled {
        position: fixed;
        background: rgba(29,14,71,.9);
        box-shadow: 0 18px 45px rgba(0,0,0,.18);
        backdrop-filter: blur(14px);
    }

.header-inner {
    width: min(100%, 1440px);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    max-width:200px;
}

.logo-mark {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 2px solid var(--orange);
    border-radius: 50%;
}

    .logo-mark span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--lime);
    }

.logo-word {
    font: 800 15px/.84 var(--display);
    letter-spacing: -.04em;
}

    .logo-word b {
        letter-spacing: .14em;
    }

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-align: center;
    font: 600 12px var(--sans);
    letter-spacing: .17em;
    text-transform: uppercase;
}

    .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -7px;
        height: 2px;
        background: var(--orange);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .25s ease;
    }

    .nav-link:hover::after, .nav-link:focus-visible::after {
        transform: scaleX(1);
    }

    .nav-link small {
        font: 500 9px/1 var(--sans);
        letter-spacing: normal;
        opacity: .6;
        text-transform: none;
    }

.header-cta, .mobile-menu-button {
    border: 0;
    border-radius: 999px;
    background: var(--orange);
    color: var(--navy);
    font: 700 11px var(--sans);
    letter-spacing: .14em;
    text-transform: uppercase;
}

.header-cta {
    padding: 13px 20px;
}

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

.mobile-menu-button {
    display: none;
    align-items: center;
    gap: 9px;
    padding: 13px 17px;
    border: 1px solid rgba(254,252,232,.4);
    background: transparent;
    color: var(--ivory);
}

    .mobile-menu-button:hover {
        border-color: var(--orange);
        background: var(--orange);
        color: var(--navy);
    }

.menu-icon {
    display: grid;
    gap: 3px;
}

    .menu-icon i {
        display: block;
        width: 12px;
        height: 1px;
        background: currentColor;
    }

.mobile-nav {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 24px;
}

.eyebrow {
    margin: 0 0 32px;
    font: 700 11px/1 var(--sans);
    letter-spacing: .2em;
    text-transform: uppercase;
}

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

    .eyebrow.violet {
        color: var(--violet);
    }

    .eyebrow.sun {
        color: var(--sun);
    }

    .eyebrow span {
        display: inline-block;
        width: 40px;
        height: 1px;
        margin-right: 10px;
        vertical-align: middle;
        background: currentColor;
    }

.hero-copy h1 {
    margin: 0;
    font: 800 clamp(4.3rem, 11.5vw, 10.5rem)/.78 var(--display);
    letter-spacing: -.085em;
}

    .hero-copy h1 strong {
        color: var(--orange);
    }

    .hero-copy h1 em {
        color: transparent;
        font-style: normal;
        -webkit-text-stroke: 2px var(--ivory);
    }

.hero-bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
    max-width: 620px;
    gap: 20px;
    margin-top: 32px;
}

.hero-add {
    margin: 0;
    color: var(--lime);
    font: 700 clamp(2.7rem, 6vw, 5rem)/.85 var(--display);
    letter-spacing: -.07em;
}

.hero-description {
    max-width: 390px;
    margin: 16px 0 0;
    color: rgba(254,252,232,.7);
    font-size: 14px;
    line-height: 1.65;
}

.round-arrow {
    display: grid;
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    place-items: center;
    margin-bottom: 4px;
    border: 1px solid rgba(254,252,232,.35);
    border-radius: 50%;
    font-size: 24px;
    transition: background-color .25s ease, color .25s ease;
}

    .round-arrow:hover {
        background: var(--orange);
        color: var(--navy);
    }

.hero-visual {
    position: relative;
    padding: 48px 0;
}

.plate {
    position: relative;
    width: min(76vw, 480px);
    aspect-ratio: 1;
    margin: auto;
}

.plate-ring {
    position: absolute;
    border-radius: 50%;
}

.ring-outer {
    inset: 11%;
    border: 28px solid var(--orange);
    box-shadow: 0 20px 0 #14082f;
}

.ring-inner {
    inset: 25%;
    border: 1px solid rgba(29,14,71,.5);
    background: var(--sun);
}

.plate-core {
    position: absolute;
    inset: 31%;
    overflow: hidden;
    border-radius: 50%;
    background: var(--lime);
}

    .plate-core i {
        position: absolute;
        display: block;
    }

.shape-purple {
    left: 13%;
    top: 15%;
    width: 48%;
    height: 30%;
    border-radius: 60% 40% 60% 40%;
    background: var(--violet);
    transform: rotate(-22deg);
}

.shape-navy {
    right: 3%;
    bottom: 9%;
    width: 56%;
    height: 45%;
    border-radius: 50% 50% 38% 62%;
    background: var(--navy);
    transform: rotate(20deg);
}

.shape-orange {
    left: 20%;
    bottom: 22%;
    width: 16%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 23px 15px 0 var(--orange), 44px -6px 0 var(--orange);
}

.shape-dot {
    right: 18%;
    top: 21%;
    width: 12%;
    aspect-ratio: 1;
    border: 4px solid var(--ivory);
    border-radius: 50%;
}

.sticker {
    position: absolute;
    display: block;
    padding: 10px 13px;
    border-radius: 999px;
    color: var(--navy);
    font: 700 11px var(--display);
    letter-spacing: .12em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 12px 30px rgba(0,0,0,.14);
}

.sticker-fresh {
    right: -20px;
    top: 12%;
    background: var(--ivory);
    transform: rotate(8deg);
}

.sticker-taste {
    left: 3%;
    bottom: -1px;
    background: var(--lime);
    transform: rotate(-8deg);
}

.hero-arabic {
    position: absolute;
    right: 48px;
    bottom: 32px;
    margin: 0;
    color: rgba(254,252,232,.55);
    font-size: 12px;
    line-height: 2;
    text-align: right;
}

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

.hero-meta {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 22px;
    left: 0;
    display: flex;
    justify-content: space-between;
    color: rgba(254,252,232,.45);
    font: 700 10px var(--sans);
    letter-spacing: .18em;
    text-transform: uppercase;
}

/* Marquee */
.marquee {
    overflow: hidden;
    border-bottom: 2px solid var(--navy);
    background: var(--orange);
    color: var(--navy);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 28s linear infinite;
}

.marquee-group {
    display: flex;
    align-items: center;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 16px 32px;
    font: 700 24px/.9 var(--display);
    letter-spacing: -.02em;
    text-transform: uppercase;
}

    .marquee-item b {
        font-weight: 700;
    }

    .marquee-item small {
        display: block;
        font: 500 12px/1 var(--sans);
        letter-spacing: normal;
        text-transform: none;
        opacity: .7;
    }

    .marquee-item i {
        color: var(--violet);
        font-style: normal;
    }

@keyframes marquee {
    from {
        transform: translateX(0);
    }

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

/* Shared sections */
.section {
    padding: 144px 0;
}

    .section h2 {
        margin: 0;
        font: 700 clamp(3rem, 6.8vw, 7rem)/.84 var(--display);
        letter-spacing: -.08em;
    }

        .section h2 strong {
            color: var(--violet);
            font-weight: inherit;
        }

.story {
    background: var(--ivory);
}

.story-grid, .clients-grid, .method-grid {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    gap: 96px;
}

.story .stamp {
    display: inline-grid;
    width: 112px;
    height: 112px;
    place-items: center;
    margin-top: 12px;
    border: 2px solid var(--navy);
    border-radius: 50%;
    text-align: center;
    font: 700 11px/1.15 var(--display);
    letter-spacing: .06em;
    text-transform: uppercase;
    transform: rotate(-8deg);
}

.story-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(29,14,71,.2);
}

    .story-text p, .lead-copy, .contact-copy {
        font-size: 16px;
        line-height: 1.8;
    }

    .story-text > div p:first-child {
        margin-top: 0;
    }

    .story-text > div p:last-child {
        margin-bottom: 0;
    }

.arabic-copy {
    line-height: 2;
}

.story-cards {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    gap: 16px;
    margin-top: 96px;
}

.story-card {
    position: relative;
    min-height: 410px;
    padding: 48px;
    border-radius: 32px;
}

    .story-card p {
        position: relative;
        z-index: 1;
        max-width: 330px;
        margin: 0;
        font: 600 clamp(2rem, 4vw, 3rem)/.98 var(--display);
        letter-spacing: -.05em;
    }

    .story-card span {
        position: absolute;
        bottom: 48px;
        font: 700 10px var(--sans);
        letter-spacing: .2em;
        text-transform: uppercase;
    }

.story-card-purple {
    overflow: hidden;
    background: var(--violet);
    color: var(--ivory);
}

    .story-card-purple::before {
        content: "";
        position: absolute;
        right: -80px;
        top: -150px;
        width: 380px;
        height: 380px;
        border: 28px solid rgba(244,226,82,.7);
        border-radius: 50%;
    }

    .story-card-purple::after {
        content: "";
        position: absolute;
        right: 100px;
        bottom: 55px;
        width: 160px;
        height: 160px;
        border-radius: 50%;
        background: var(--lime);
    }

.story-card-lime {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--lime);
}

    .story-card-lime b {
        font-size: 28px;
        font-weight: 400;
    }

.services {
    background: var(--navy);
    color: var(--ivory);
}

.section-intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 64px;
}

.services h2 strong {
    color: var(--orange);
}

.intro-copy {
    max-width: 320px;
    color: rgba(254,252,232,.6);
    font-size: 14px;
    line-height: 1.9;
}

    .intro-copy p {
        margin: 0 0 18px;
    }

    .intro-copy .arabic-copy {
        color: rgba(254,252,232,.7);
    }

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.service-card, .client-card {
    min-height: 400px;
    padding: 40px;
    border-radius: 24px;
    color: var(--navy);
    transition: transform .35s cubic-bezier(.22,1,.36,1);
}

    .service-card:hover, .client-card:hover {
        transform: translateY(-8px) rotate(-1deg);
    }

.service-orange, .client-orange {
    background: var(--orange);
}

.service-lime, .client-lime {
    background: var(--lime);
}

.service-violet, .client-violet {
    background: var(--violet);
    color: var(--ivory);
}

.service-sun, .client-sun {
    background: var(--sun);
}

.service-ivory, .client-ivory {
    background: var(--ivory);
}

.card-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    font: 700 12px var(--sans);
    letter-spacing: .15em;
}

    .card-top b {
        font: 400 24px var(--sans);
    }

.card-main {
    margin-top: 128px;
}

    .card-main h3, .client-main h3 {
        margin: 0;
        font: 700 clamp(2.3rem, 4vw, 3.5rem)/.9 var(--display);
        letter-spacing: -.06em;
    }

    .card-main > p:last-child, .client-main > p:last-of-type {
        max-width: 390px;
        margin: 16px 0 0;
        font-size: 14px;
        line-height: 1.7;
        opacity: .75;
    }

.card-arabic {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.8;
    opacity: .7;
}

.card-tag {
    display: block;
    margin-top: 24px;
    font: 700 10px var(--sans);
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: .6;
}

.clients {
    background: #fff;
}

.clients-arabic {
    max-width: 190px;
    margin: 0;
    font-size: 18px;
    line-height: 2;
}

.micro-copy {
    display: block;
    margin-top: 64px;
    font: 700 10px var(--sans);
    letter-spacing: .18em;
    opacity: .55;
    text-transform: uppercase;
}

.clients-grid > div:nth-child(2) > .reveal .lead-copy {
    max-width: 600px;
    margin: 32px 0 0;
    color: rgba(29,14,71,.7);
}

.client-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 56px;
}

.client-card {
    min-height: 350px;
    padding: 28px;
}

.client-main {
    margin-top: 40px;
}

    .client-main h3 {
        font-size: clamp(1.7rem, 3vw, 2.5rem);
    }

.client-logos {
    margin-top: 24px;
    padding: 14px;
    border-radius: 12px;
    background: #fff;
}

.logo-caption {
    display: block;
    margin-bottom: 12px;
    color: rgba(29,14,71,.5);
    font: 700 9px var(--sans);
    letter-spacing: .16em;
    text-transform: uppercase;
}

.client-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    color: var(--navy);
}

    .client-logo strong {
        font: 700 11px/1 var(--display);
        letter-spacing: -.03em;
        text-transform: uppercase;
    }

.client-mark {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 2px solid var(--navy);
    font: 700 10px var(--display);
    letter-spacing: -.08em;
}

.client-mark-01, .client-mark-04 {
    border-radius: 50%;
    background: var(--orange);
}

.client-mark-02, .client-mark-05 {
    border-radius: 6px;
    background: var(--violet);
    color: var(--ivory);
}

.client-mark-03, .client-mark-06 {
    border-radius: 50% 50% 25% 25%;
    background: var(--lime);
}

.section-foot {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 64px;
    padding-top: 24px;
    border-top: 1px solid rgba(29,14,71,.3);
    font: 700 10px var(--sans);
    letter-spacing: .17em;
    text-transform: uppercase;
}

.method {
    background: var(--sun);
}

.method-arabic {
    font-size: 18px;
    line-height: 2;
}

.steps {
    margin-top: 64px;
    border-top: 1px solid rgba(29,14,71,.3);
}

.step {
    display: grid;
    grid-template-columns: 90px 1fr 1fr;
    align-items: center;
    gap: 20px;
    padding: 36px 0;
    border-bottom: 1px solid rgba(29,14,71,.3);
}

.step-number {
    color: var(--violet);
    font: 700 24px var(--display);
}

.step h3 {
    margin: 0;
    font: 700 30px/1 var(--display);
    letter-spacing: -.04em;
}

.step p {
    max-width: 390px;
    margin: 0;
    color: rgba(29,14,71,.65);
    font-size: 14px;
    line-height: 1.7;
}

.step .arabic-small {
    margin-top: 8px;
    line-height: 1.9;
}

.beliefs {
    background: var(--ivory);
}

.belief-intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 64px;
}

.belief-arabic {
    color: rgba(29,14,71,.5);
    font-size: 14px;
}

.belief-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 2px solid var(--navy);
}

.belief {
    min-height: 340px;
    padding: 40px 32px;
    border-right: 2px solid var(--navy);
    border-bottom: 2px solid var(--navy);
}

    .belief:last-child {
        border-right: 0;
    }

.belief-number {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 56px;
}

    .belief-number::first-letter {
        display: grid;
    }

.belief-number {
    font: 700 14px var(--sans);
}

    .belief-number > span {
        color: var(--violet);
        font-size: 18px;
    }

.belief h3 {
    max-width: 340px;
    margin: 0;
    font: 700 30px/.95 var(--display);
    letter-spacing: -.05em;
}

.belief > p:last-child {
    max-width: 340px;
    margin: 14px 0 0;
    color: rgba(29,14,71,.65);
    font-size: 14px;
    line-height: 1.7;
}

.contact {
    background: var(--violet);
    color: var(--ivory);
}

    .contact h2 strong {
        color: var(--orange);
    }

.contact-copy {
    max-width: 450px;
    margin: 40px 0 0;
    color: rgba(254,252,232,.75);
}

.contact-arabic {
    max-width: 450px;
    margin: 20px 0 0;
    color: rgba(254,252,232,.7);
    font-size: 14px;
    line-height: 2;
}

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

.contact-panel {
    color: var(--navy);
}

    .contact-panel form, .success-panel {
        padding: 40px;
        border-radius: 24px;
        background: var(--ivory);
    }

        .contact-panel form h3 {
            margin: 0;
            font: 700 30px var(--display);
            letter-spacing: -.04em;
        }

.form-arabic {
    margin: 6px 0 40px;
    color: var(--violet);
    font-size: 14px;
}

.form-error {
    margin: -18px 0 28px;
    padding: 12px 14px;
    border-left: 3px solid #9a2f2f;
    background: rgba(154,47,47,.08);
    color: #7e2424;
    font-size: 13px;
    line-height: 1.5;
}

.contact-panel label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 8px;
    font: 700 10px var(--sans);
    letter-spacing: .15em;
    text-transform: uppercase;
}

    .contact-panel label small {
        color: var(--violet);
        font: 500 11px var(--sans);
        letter-spacing: normal;
        text-transform: none;
    }

.contact-panel input, .contact-panel textarea {
    display: block;
    width: 100%;
    margin-bottom: 24px;
    padding: 12px 0;
    border: 0;
    border-bottom: 1px solid rgba(29,14,71,.3);
    outline: 0;
    resize: vertical;
    background: transparent;
    color: var(--navy);
    font-size: 16px;
}

    .contact-panel input:focus, .contact-panel textarea:focus {
        border-color: var(--orange);
    }

    .contact-panel input::placeholder, .contact-panel textarea::placeholder {
        color: rgba(29,14,71,.35);
    }

.validation {
    display: block;
    margin: -17px 0 18px;
    color: #9a2f2f;
    font-size: 11px;
}

.contact-panel button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 8px;
    padding: 16px 20px;
    border: 0;
    border-radius: 999px;
    background: var(--navy);
    color: var(--ivory);
    font: 700 12px var(--sans);
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
}

    .contact-panel button:hover {
        background: var(--violet);
    }

    .contact-panel button small {
        margin-left: 10px;
        font: 500 11px var(--sans);
        letter-spacing: normal;
        text-transform: none;
        opacity: .7;
    }

.form-note {
    margin: 20px 0 0;
    color: rgba(29,14,71,.45);
    font-size: 10px;
    text-align: center;
}

.success-panel {
    display: flex;
    min-height: 370px;
    flex-direction: column;
    justify-content: space-between;
}

.success-check {
    font-size: 30px;
}

.success-panel h3 {
    margin: 0;
    font: 700 54px/.9 var(--display);
    letter-spacing: -.07em;
}

.success-panel > div p:last-child {
    max-width: 300px;
    margin: 20px 0 0;
    color: rgba(29,14,71,.7);
    font-size: 14px;
    line-height: 1.7;
}

.success-panel > a {
    font: 700 12px var(--sans);
    letter-spacing: .15em;
    text-decoration: underline;
    text-transform: uppercase;
}

.footer {
    padding: 56px 0 24px;
    background: var(--navy);
    color: var(--ivory);
}

.footer-main {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 48px;
}

    .footer-main > div:first-child p {
        max-width: 320px;
        margin: 28px 0 0;
        color: rgba(254,252,232,.5);
        font-size: 14px;
        line-height: 1.7;
    }

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 16px;
    font-size: 14px;
}

    .footer-links a:hover {
        color: var(--orange);
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 64px;
    padding-top: 20px;
    border-top: 1px solid rgba(254,252,232,.15);
    color: rgba(254,252,232,.4);
    font: 10px var(--sans);
    letter-spacing: .16em;
    text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 767px) {
    .page-width {
        width: min(100% - 40px, 1440px);
    }

    .hero {
        min-height: 900px;
        padding-top: 136px;
    }

        .hero::before {
            background-size: 28px 28px;
        }

    .site-header {
        padding: 20px;
    }

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

    .mobile-menu-button {
        display: flex;
    }

    .mobile-nav {
        display: block;
        margin-top: 16px;
        padding: 8px 20px;
        border: 1px solid rgba(254,252,232,.2);
        border-radius: 20px;
        background: #28165b;
    }

        .mobile-nav[hidden] {
            display: none;
        }

        .mobile-nav a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
            border-bottom: 1px solid rgba(254,252,232,.15);
            font-size: 14px;
            letter-spacing: .15em;
            text-transform: uppercase;
        }

            .mobile-nav a:last-child {
                border-bottom: 0;
            }

            .mobile-nav a span:first-child {
                display: flex;
                flex-direction: column;
                gap: 5px;
            }

            .mobile-nav a small {
                color: rgba(254,252,232,.55);
                font: 500 11px var(--sans);
                letter-spacing: normal;
                text-transform: none;
            }

    .hero-content {
        display: block;
    }

    .hero-copy h1 {
        font-size: clamp(4rem, 19vw, 6rem);
    }

    .hero-bottom {
        margin-top: 28px;
    }

    .round-arrow {
        display: none;
    }

    .hero-visual {
        padding: 72px 0 24px;
    }

    .plate {
        width: min(100%, 370px);
    }

    .ring-outer {
        border-width: 18px;
    }

    .sticker {
        font-size: 10px;
    }

    .sticker-fresh {
        right: 0;
    }

    .hero-arabic {
        right: 0;
        bottom: 0;
        font-size: 11px;
    }

    .hero-meta {
        right: 20px;
        bottom: 20px;
        left: 20px;
        font-size: 8px;
    }

    .marquee-track {
        animation-duration: 20s;
    }

    .marquee-item {
        margin: 14px 20px;
        font-size: 18px;
        gap: 12px;
    }

        .marquee-item small {
            font-size: 10px;
        }

    .section {
        padding: 96px 0;
    }

    .story-grid, .clients-grid, .method-grid, .contact-grid {
        display: block;
    }

        .story-grid > div:nth-child(2), .clients-grid > div:nth-child(2), .method-grid > div:nth-child(2), .contact-grid > div:nth-child(2) {
            margin-top: 56px;
        }

    .story-text {
        display: block;
        margin-top: 36px;
        padding-top: 24px;
    }

        .story-text > div {
            margin-top: 30px;
        }

    .story-cards {
        display: block;
        margin-top: 64px;
    }

    .story-card {
        min-height: 300px;
        margin-top: 12px;
        padding: 32px;
        border-radius: 24px;
    }

        .story-card span {
            bottom: 32px;
        }

    .section-intro {
        display: block;
        margin-bottom: 48px;
    }

    .intro-copy {
        margin-top: 32px;
    }

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

    .service-card {
        min-height: 320px;
        padding: 28px;
    }

    .card-main {
        margin-top: 96px;
    }

    .client-card {
        min-height: 320px;
    }

    .section-foot {
        flex-direction: column;
        line-height: 1.5;
    }

    .belief-intro {
        align-items: start;
        margin-bottom: 48px;
    }

    .belief-arabic {
        display: block;
    }

    .belief-grid {
        display: block;
    }

    .belief {
        min-height: 0;
        padding: 32px 0;
        border-right: 0;
    }

    .belief-number {
        margin-bottom: 36px;
    }

    .step {
        display: block;
        padding: 28px 0;
    }

    .step-number {
        display: block;
        margin-bottom: 16px;
    }

    .step > div:last-child {
        margin-top: 18px;
    }

    .contact-panel form, .success-panel {
        padding: 28px;
    }

        .success-panel h3 {
            font-size: 48px;
        }

    .footer-main, .footer-bottom {
        display: block;
    }

    .footer-links {
        align-items: start;
        margin-top: 40px;
    }

    .footer-bottom span {
        display: block;
        margin-top: 12px;
    }

    #logo-img {
        width: 60%;
        height: auto;
    }
}
