
/* =====================================================
   RESET
   ===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

:root {
    --black: #101010;
    --white: #f8f7f2;
    --cream: #eeeadd;
    --orange: #ff5c35;
    --yellow: #ffd84d;
    --purple: #8b5cf6;
    --green: #b8f36b;
    --blue: #4f8cff;
    --gray: #777;
    --line: rgba(16,16,16,.15);
}

body {
    font-family: Calibri, Arial, sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =====================================================
   GLOBAL
   ===================================================== */

.container {
    width: min(1240px, calc(100% - 48px));
    margin-inline: auto;
}

.section {
    padding: 120px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    background: var(--orange);
    border-radius: 50%;
}

.orange {
    color: var(--orange);
}

.blue {
    color: var(--blue);
}

.center {
    text-align: center;
}


/* =====================================================
   HEADER
   ===================================================== */

header {
    position: fixed;
    z-index: 100;
    top: 18px;
    left: 0;
    right: 0;
    transition: .3s ease;
}

.nav {
    height: 68px;
    padding: 0 10px 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(248,247,242,.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 100px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 900;
    white-space: nowrap;
}

.logo-symbol {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    background: var(--black);
    color: white;
    border-radius: 50%;
    font-size: 16px;
    letter-spacing: -1px;
}

nav {
    display: flex;
    gap: 30px;
    font-size: 14px;
    font-weight: 600;
}

nav a {
    opacity: .65;
    transition: .25s;
}

nav a:hover {
    opacity: 1;
    color: var(--orange);
}

.nav-button {
    padding: 12px 20px;
    background: var(--black);
    color: white;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.nav-button:hover {
    background: var(--orange);
}


/* =====================================================
   HERO
   ===================================================== */

.hero {
    min-height: 100svh;
    padding-top: 150px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: -220px;
    left: -180px;
    background: var(--yellow);
    border-radius: 50%;
    filter: blur(2px);
    opacity: .65;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-copy {
    min-width: 0;
}

.hero-copy h1 {
    margin-top: 22px;
    font-size: clamp(50px, 7vw, 105px);
    line-height: .94;
    letter-spacing: -5px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.hero-copy h1 .line {
    display: block;
}

.hero-copy h1 .outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--black);
}

.hero-description {
    max-width: 600px;
    margin-top: 35px;
    font-size: 19px;
    line-height: 1.9;
    color: #555;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 54px;
    padding: 0 25px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    transition: .3s;
}

.btn-dark {
    background: var(--black);
    color: white;
}

.btn-dark:hover {
    transform: translateY(-4px);
    background: var(--orange);
}

.btn-light {
    border: 1px solid var(--line);
}

.btn-light:hover {
    background: white;
}


/* =====================================================
   HERO ART
   ===================================================== */

.hero-art {
    min-height: 550px;
    position: relative;
    min-width: 0;
}

.blob {
    position: absolute;
    width: 380px;
    height: 380px;
    right: 40px;
    top: 50px;
    background: var(--orange);
    border-radius: 48% 52% 63% 37% / 41% 44% 56% 59%;
    transform: rotate(-14deg);
    animation: blob 8s ease-in-out infinite;
}

@keyframes blob {
    0%,100% {
        border-radius: 48% 52% 63% 37% / 41% 44% 56% 59%;
    }

    50% {
        border-radius: 63% 37% 43% 57% / 55% 42% 58% 45%;
    }
}

.art-card {
    position: absolute;
    background: white;
    border: 1px solid rgba(0,0,0,.1);
    box-shadow: 0 25px 70px rgba(0,0,0,.14);
    border-radius: 28px;
    overflow: hidden;
}

.art-main {
    width: 310px;
    right: 70px;
    top: 120px;
    transform: rotate(7deg);
}

.art-main img {
    height: 390px;
    object-fit: cover;
}

.art-small {
    width: 205px;
    left: 5px;
    bottom: 80px;
    padding: 18px;
    background: var(--black);
    color: white;
    transform: rotate(-8deg);
}

.art-small strong {
    display: block;
    font-size: 34px;
    line-height: 1;
}

.art-small span {
    display: block;
    margin-top: 8px;
    color: #aaa;
    font-size: 12px;
}

.floating-star {
    position: absolute;
    width: 90px;
    height: 90px;
    display: grid;
    place-items: center;
    background: var(--yellow);
    color: var(--black);
    clip-path: polygon(
        50% 0%,
        61% 35%,
        98% 35%,
        68% 57%,
        79% 95%,
        50% 72%,
        21% 95%,
        32% 57%,
        2% 35%,
        39% 35%
    );
    font-size: 25px;
    left: 30px;
    top: 50px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    50% {
        transform: translateY(-20px) rotate(12deg);
    }
}


/* =====================================================
   MARQUEE
   ===================================================== */

.marquee {
    overflow: hidden;
    background: var(--black);
    color: white;
    padding: 22px 0;
    transform: rotate(-1.5deg) scale(1.02);
}

.marquee-track {
    width: max-content;
    display: flex;
    gap: 50px;
    animation: marquee 25s linear infinite;
}

.marquee span {
    font-size: 28px;
    font-weight: 900;
    white-space: nowrap;
}

.marquee .dot {
    color: var(--orange);
}

@keyframes marquee {
    to {
        transform: translateX(50%);
    }
}


/* =====================================================
   ABOUT
   ===================================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: end;
}

.about-title {
    font-size: clamp(48px, 6vw, 80px);
    line-height: 1;
    letter-spacing: -3px;
    margin-top: 22px;
}

.about-text {
    color: #666;
    line-height: 2;
    font-size: 18px;
    margin-top: 30px;
}

.big-number {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
    margin-top: 30px;
    text-align: center;
}

.number {
    padding: 25px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.number:nth-child(odd) {
    border-left: 1px solid var(--line);
    padding-left: 0;
}

.number strong {
    display: block;
    font-size: 55px;
    line-height: 1;
}

.number span {
    display: block;
    color: #777;
    margin-top: 10px;
}


/* =====================================================
   SERVICES
   ===================================================== */

.services {
    background: var(--cream);
}

.section-heading {
    max-width: 800px;
    margin-bottom: 65px;
}

.section-heading h2 {
    margin-top: 20px;
    font-size: clamp(45px, 6vw, 82px);
    line-height: .98;
    letter-spacing: -3px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.service {
    min-height: 410px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: rgba(255,255,255,.45);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .35s;
}

.service:hover {
    transform: translateY(-10px) rotate(-1deg);
    background: white;
    box-shadow: 0 25px 50px rgba(0,0,0,.08);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    background: var(--yellow);
    border-radius: 20px;
    font-size: 30px;
}

.service:nth-child(2) .service-icon {
    background: var(--purple);
    color: white;
}

.service:nth-child(3) .service-icon {
    background: var(--green);
}

.service h3 {
    font-size: 28px;
    margin-top: 35px;
}

.service p {
    color: #666;
    line-height: 1.9;
    margin-top: 14px;
}

.service-number {
    font-size: 13px;
    color: #999;
}


/* =====================================================
   PROJECTS
   ===================================================== */

.projects-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
}

.projects-header h2 {
    font-size: clamp(48px, 7vw, 90px);
    line-height: .9;
    letter-spacing: -4px;
    margin-top: 20px;
}

.projects-header p {
    max-width: 400px;
    color: #777;
    line-height: 1.8;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 20px;
}

.project {
    position: relative;
    min-height: 580px;
    border-radius: 35px;
    overflow: hidden;
    background: #ddd;
}

.project:nth-child(2) {
    margin-top: 120px;
    min-height: 460px;
}

.project img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s;
}

.project:hover img {
    transform: scale(1.06);
}

.project-overlay {
    position: absolute;
    inset: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.15),
        rgba(0,0,0,.78)
    );
    color: white;
}

.project-tag {
    align-self: flex-start;
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 12px;
}

.project-title {
    font-size: 43px;
    line-height: 1;
}

.project-arrow {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-top: 20px;
    border-radius: 50%;
    background: white;
    color: black;
    font-size: 20px;
}


/* =====================================================
   PROCESS
   ===================================================== */

.process {
    background: var(--black);
    color: white;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.process-title {
    font-size: clamp(50px, 7vw, 90px);
    line-height: .95;
    letter-spacing: -4px;
    margin-top: 20px;
}

.process-intro {
    color: #999;
    line-height: 1.9;
    margin-top: 30px;
    max-width: 500px;
}

.steps {
    border-top: 1px solid rgba(255,255,255,.15);
}

.step {
    display: grid;
    grid-template-columns: 60px 1fr 30px;
    gap: 20px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
    transition: .3s;
}

.step:hover {
    color: var(--yellow);
    padding-right: 12px;
}

.step-number {
    color: var(--orange);
    font-size: 14px;
}

.step h3 {
    font-size: 25px;
}

.step p {
    color: #888;
    line-height: 1.8;
    margin-top: 8px;
}


/* =====================================================
   CONTACT
   ===================================================== */

.contact-section {
    padding: 130px 0;
}

.contact-box {
    position: relative;
    overflow: hidden;
    background: var(--orange);
    border-radius: 45px;
    padding: 75px 80px;
    color: white;
}

.contact-box::before {
    content: "EPFS";
    position: absolute;
    font-size: 230px;
    font-weight: 900;
    opacity: .12;
    left: -20px;
    bottom: -50px;
    transform: rotate(-10deg);
    pointer-events: none;
}

.contact-box h2 {
    position: relative;
    z-index: 2;
    max-width: 850px;
    font-size: clamp(48px, 7vw, 90px);
    line-height: .95;
    letter-spacing: -4px;
}

.contact-box > p {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin-top: 25px;
    line-height: 1.9;
    color: rgba(255,255,255,.85);
}

.contact-info {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 45px;
}

.contact-item {
    min-height: 125px;
    padding: 22px;
    background: rgba(0,0,0,.13);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .3s;
}

.contact-item:hover {
    background: rgba(255,255,255,.15);
    transform: translateY(-5px);
}

.contact-label {
    font-size: 12px;
    color: rgba(255,255,255,.7);
}

.contact-value {
    font-size: 18px;
    font-weight: 700;
    direction: ltr;
    text-align: right;
}

.contact-item.address .contact-value {
    direction: rtl;
    text-align: right;
    line-height: 1.7;
    font-size: 15px;
}

.contact-button {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    min-height: 54px;
    padding: 0 25px;
    background: white;
    color: black;
    border-radius: 100px;
    font-weight: 700;
}

.contact-button:hover {
    background: var(--black);
    color: white;
}


/* =====================================================
   FOOTER
   ===================================================== */

footer {
    padding: 50px 0 30px;
    border-top: 1px solid var(--line);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo {
    font-size: 30px;
    font-weight: 900;
}

.footer-logo small {
    display: block;
    margin-top: 5px;
    color: #777;
    font-size: 12px;
    font-weight: 400;
}

.footer-links {
    display: flex;
    gap: 25px;
    color: #666;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: #888;
    font-size: 12px;
}



/* =====================================================
   SOCIAL MEDIA
   ===================================================== */

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.social-link {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border: 1px solid var(--line);
    border-radius: 50%;

    background: var(--white);

    overflow: hidden;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

/* PNG ICON */
.social-link img {
    width: 26px;
    height: 26px;

    object-fit: contain;
    display: block;

    transition:
        transform .3s ease,
        filter .3s ease;
}

/* Hover روی خود دکمه */
.social-link:hover {
    border-color: transparent;

    transform: translateY(-5px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .12);
}

/* بزرگ شدن خود آیکون PNG */
.social-link:hover img {
    transform: scale(1.2);
}


/* =====================================================
   SOCIAL MEDIA COLORS
   ===================================================== */

.social-link.telegram:hover {
    background: #229ED9;
}

.social-link.whatsapp:hover {
    background: #25D366;
}

.social-link.eitaa:hover {
    background: #efa300;
}

.social-link.rubika:hover {
    background: #7B2CBF;
}

.social-link.bale:hover {
    background: #00A884;
}

.social-link.instagram:hover {
    background: linear-gradient(
        45deg,
        #feda75,
        #fa7e1e,
        #d62976,
        #962fbf,
        #4f5bd5
    );
}


/* =====================================================
   MOBILE SOCIAL MEDIA
   ===================================================== */

@media (max-width: 600px) {

    .social-links {
        margin-top: 28px;
        gap: 10px;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    .social-link img {
        width: 24px;
        height: 24px;
    }

    .social-link:hover img {
        transform: scale(1.2);
    }
}


/* =====================================================
   VERY SMALL PHONES
   ===================================================== */

@media (max-width: 380px) {

    .social-link {
        width: 42px;
        height: 42px;
    }

    .social-link img {
        width: 22px;
        height: 22px;
    }
}




/* =====================================================
   REVEAL
   ===================================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: .8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 900px) {

    .container {
        width: min(100% - 36px, 700px);
    }

    .section {
        padding: 90px 0;
    }

    nav {
        display: none;
    }

    .nav {
        padding-left: 10px;
    }

    .hero {
        padding-top: 125px;
        min-height: auto;
    }

    .hero-grid,
    .about-grid,
    .process-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        font-size: clamp(55px, 16vw, 90px);
        letter-spacing: -4px;
    }

    .hero-art {
        min-height: 500px;
        margin-top: 20px;
    }

    .blob {
        right: 50%;
        transform: translateX(50%);
    }

    .art-main {
        right: 50%;
        transform: translateX(50%) rotate(5deg);
    }

    .art-small {
        left: 5px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service {
        min-height: 340px;
    }

    .project,
    .project:nth-child(2) {
        min-height: 480px;
        margin-top: 0;
    }

    .projects-header {
        display: block;
    }

    .projects-header p {
        margin-top: 25px;
    }

    .process-grid {
        gap: 60px;
    }

    .contact-box {
        padding: 60px 45px;
        border-radius: 35px;
    }

    .contact-box::before {
        font-size: 150px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 600px) {

    .container {
        width: calc(100% - 30px);
    }

    .section {
        padding: 70px 0;
    }

    header {
        top: 10px;
    }

    .nav {
        height: 58px;
        padding: 0 7px 0 9px;
    }

    .logo {
        font-size: 15px;
        gap: 7px;
    }

    .logo-symbol {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 13px;
    }

    .nav-button {
        padding: 10px 14px;
        font-size: 11px;
    }

    .hero {
        padding-top: 105px;
        padding-bottom: 50px;
    }

    .hero::before {
        width: 330px;
        height: 330px;
        top: -150px;
        left: -180px;
        opacity: .55;
    }

    .hero-grid {
        gap: 20px;
    }

    .hero-copy h1 {
        margin-top: 18px;
        font-size: clamp(45px, 14vw, 70px);
        line-height: .94;
        letter-spacing: -3px;
    }

    .hero-copy h1 .outline {
        -webkit-text-stroke: 1.5px var(--black);
    }

    .hero-description {
        margin-top: 25px;
        font-size: 16px;
        line-height: 1.9;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        margin-top: 28px;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 52px;
    }

    .hero-art {
        min-height: 390px;
        width: 100%;
        margin-top: 10px;
    }

    .blob {
        width: 270px;
        height: 270px;
        top: 45px;
        right: 50%;
        transform: translateX(50%) rotate(-8deg);
    }

    .art-main {
        width: min(235px, 65vw);
        right: 50%;
        top: 65px;
        transform: translateX(50%) rotate(5deg);
        border-radius: 22px;
    }

    .art-main img {
        height: 290px;
    }

    .art-small {
        width: 135px;
        left: 0;
        bottom: 25px;
        padding: 14px;
        border-radius: 18px;
    }

    .art-small strong {
        font-size: 28px;
    }

    .art-small span {
        font-size: 10px;
    }

    .floating-star {
        width: 60px;
        height: 60px;
        left: 8px;
        top: 15px;
        font-size: 18px;
    }

    .marquee {
        padding: 17px 0;
    }

    .marquee-track {
        gap: 30px;
        animation-duration: 18s;
    }

    .marquee span {
        font-size: 20px;
    }

    .about-grid {
        gap: 45px;
    }

    .about-title {
        font-size: clamp(42px, 13vw, 62px);
        letter-spacing: -2px;
    }

    .about-text {
        font-size: 16px;
        line-height: 1.9;
        margin-top: 22px;
    }

    .big-number {
        margin-top: 0;
    }

    .number {
        padding: 20px 0;
    }

    .number:nth-child(odd) {
        padding-left: 0;
    }

    .number strong {
        font-size: 39px;
    }

    .number span {
        font-size: 12px;
        margin-top: 8px;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: clamp(40px, 12vw, 58px);
        letter-spacing: -2px;
    }

    .service {
        min-height: 310px;
        padding: 24px;
        border-radius: 24px;
    }

    .service-icon {
        width: 58px;
        height: 58px;
        border-radius: 16px;
        font-size: 24px;
    }

    .service h3 {
        font-size: 24px;
        margin-top: 25px;
    }

    .service p {
        font-size: 15px;
        line-height: 1.85;
    }

    .projects-header {
        margin-bottom: 35px;
    }

    .projects-header h2 {
        font-size: clamp(43px, 13vw, 65px);
        letter-spacing: -3px;
    }

    .projects-header p {
        font-size: 15px;
        line-height: 1.9;
        margin-top: 20px;
    }

    .projects-grid {
        gap: 15px;
    }

    .project,
    .project:nth-child(2) {
        min-height: 410px;
        border-radius: 25px;
    }

    .project-overlay {
        padding: 22px;
    }

    .project-title {
        font-size: 31px;
        line-height: 1.05;
    }

    .project-arrow {
        width: 46px;
        height: 46px;
        margin-top: 16px;
    }

    .process-grid {
        gap: 45px;
    }

    .process-title {
        font-size: clamp(45px, 13vw, 65px);
        letter-spacing: -3px;
    }

    .process-intro {
        font-size: 15px;
        line-height: 1.9;
    }

    .step {
        grid-template-columns: 38px 1fr 20px;
        gap: 12px;
        padding: 22px 0;
    }

    .step h3 {
        font-size: 21px;
    }

    .step p {
        font-size: 14px;
        line-height: 1.8;
    }

    .contact-section {
        padding: 70px 0;
    }

    .contact-box {
        padding: 45px 25px;
        border-radius: 27px;
    }

    .contact-box h2 {
        font-size: clamp(40px, 12vw, 62px);
        letter-spacing: -3px;
        line-height: .98;
    }

    .contact-box > p {
        font-size: 15px;
        line-height: 1.9;
    }

    .contact-info {
        gap: 10px;
        margin-top: 30px;
    }

    .contact-item {
        min-height: 105px;
        padding: 18px;
        border-radius: 18px;
    }

    .contact-value {
        font-size: 16px;
    }

    .contact-item.address .contact-value {
        font-size: 14px;
    }

    .contact-button {
        width: 100%;
    }

    .contact-box::before {
        font-size: 90px;
        bottom: -15px;
        left: -10px;
    }

    .footer-top {
        display: block;
    }

    .footer-logo {
        font-size: 27px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 15px 20px;
        margin-top: 25px;
    }

    .footer-bottom {
        display: block;
        margin-top: 45px;
        line-height: 2;
    }

    .footer-bottom span {
        display: block;
    }

    .social-links {
        margin-top: 28px;
        gap: 10px;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    .social-link svg {
        width: 19px;
        height: 19px;
    }

    .reveal {
        transform: translateY(25px);
    }
}


/* =====================================================
   VERY SMALL PHONES
   ===================================================== */

@media (max-width: 380px) {

    .container {
        width: calc(100% - 24px);
    }

    .nav-button {
        padding: 9px 11px;
        font-size: 10px;
    }

    .hero-copy h1 {
        font-size: 43px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-art {
        min-height: 350px;
    }

    .blob {
        width: 235px;
        height: 235px;
    }

    .art-main {
        width: 205px;
    }

    .art-main img {
        height: 255px;
    }

    .art-small {
        width: 120px;
    }

    .number strong {
        font-size: 34px;
    }

    .project,
    .project:nth-child(2) {
        min-height: 370px;
    }

    .project-title {
        font-size: 27px;
    }

    .contact-box {
        padding: 38px 20px;
    }
}


/* =====================================================
   REDUCE MOTION
   ===================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

