:root {
    --bg: #080706;
    --bg2: #0f0e0c;
    --surface: #161410;
    --border: rgba(212, 175, 55, 0.15);
    --accent: #d4af37;
    --accent2: #f5d76e;
    --accent3: #b8960c;
    --text: #f0ead6;
    --muted: #7a6a4a;
    --fd: 'Bebas Neue', sans-serif;
    --fb: 'DM Sans', sans-serif;
    --fm: 'JetBrains Mono', monospace;
}
[data-theme="light"] {
    --bg: #faf7f0;
    --bg2: #f0e8d0;
    --surface: #fff;
    --border: rgba(180, 140, 20, 0.18);
    --text: #1a1408;
    --muted: #8a7040;
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}
html {
    scroll-behavior: smooth
}
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--fb);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background .4s, color .4s
}
/* NOISE */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: .025
}
/* LOADER */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #080706;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: opacity .6s, visibility .6s
}
#loader.hide {
    opacity: 0;
    visibility: hidden
}
.ld-logo {
    font-family: var(--fd);
    font-size: clamp(64px, 12vw, 108px);
    color: var(--accent);
    letter-spacing: 6px;
    animation: glow 1.2s ease-in-out infinite alternate
}
.ld-bar {
    width: 200px;
    height: 2px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 2px;
    overflow: hidden
}
.ld-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent3), var(--accent2));
    animation: fill 1.8s ease forwards
}
@keyframes fill {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}
@keyframes glow {
    from {
        text-shadow: 0 0 20px var(--accent)
    }

    to {
        text-shadow: 0 0 60px var(--accent), 0 0 100px rgba(212, 175, 55, 0.4)
    }
}
/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 5%;
    background: rgba(8, 7, 6, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background .3s
}
[data-theme="light"] nav {
    background: rgba(250, 247, 240, 0.85)
}
.nav-logo {
    font-family: var(--fd);
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--accent);
    text-decoration: none
}
.nav-logo span {
    color: var(--accent2)
}
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center
}
.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: color .2s;
    position: relative
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s
}
.nav-links a:hover {
    color: var(--text)
}
.nav-links a:hover::after {
    transform: scaleX(1)
}
.nav-cta {
    background: var(--accent) !important;
    color: #000 !important;
    padding: 8px 20px;
    border-radius: 4px
}
.nav-cta::after {
    display: none !important
}
.nav-cta:hover {
    background: var(--accent2) !important
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px
}
#themetoggle {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s
}
#themetoggle:hover {
    border-color: var(--accent)
}
.ham {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px
}
.ham span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: all .3s;
    border-radius: 2px
}
.mob-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 99;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px 5%;
    gap: 0
}
.mob-menu.open {
    display: flex
}
.mob-menu a {
    text-decoration: none;
    color: var(--text);
    font-size: 15px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border)
}

/* HERO */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%)
}
.hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.09) 0%, transparent 70%);
    pointer-events: none
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 100px;
    padding: 6px 16px;
    font-family: var(--fm);
    font-size: 11px;
    color: var(--accent);
    margin-bottom: 32px;
    animation: up .8s ease both
}
.dot {
    width: 6px;
    height: 6px;
    background: var(--accent2);
    border-radius: 50%;
    animation: blink 1.5s infinite
}
@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.2
    }
}
h1 {
    font-family: var(--fd);
    font-size: clamp(58px, 10vw, 118px);
    line-height: .92;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: up .8s .1s ease both
}
h1 .outline {
    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.3);
    color: transparent
}
h1 .gold {
    color: var(--accent)
}
.hero-desc {
    font-size: 17px;
    color: var(--muted);
    max-width: 500px;
    margin-bottom: 44px;
    font-weight: 300;
    line-height: 1.8;
    animation: up .8s .2s ease both
}
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: up .8s .3s ease both
}
.btn-p {
    background: var(--accent);
    color: #000;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .05em;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px
}
.btn-p:hover {
    background: var(--accent2);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3)
}
.btn-s {
    border: 1px solid var(--border);
    color: var(--text);
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: .05em;
    transition: all .2s
}
.btn-s:hover {
    border-color: var(--accent);
    color: var(--accent)
}
.hero-stats {
    margin-top: 80px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    animation: up .8s .4s ease both
}
.stat-num {
    font-family: var(--fd);
    font-size: 48px;
    color: var(--accent);
    line-height: 1;
    letter-spacing: 1px
}
.stat-lbl {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-top: 4px;
    font-family: var(--fm)
}
.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--fm);
    font-size: 9px;
    letter-spacing: .25em;
    color: var(--muted);
    text-transform: uppercase;
    animation: up 1s .8s ease both
}
.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: spulse 2s ease infinite
}
@keyframes spulse {

    0%,
    100% {
        opacity: .3
    }

    50% {
        opacity: 1
    }
}

/* SERVICES */
#services {
    padding: 120px 5%;
    position: relative;
    z-index: 1
}
.sec-label {
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px
}
.sec-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--accent)
}
h2 {
    font-family: var(--fd);
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px
}
.svc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px
}
.svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border)
}
.svc-card {
    background: var(--bg);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: background .3s;
    cursor: default
}
.svc-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity .3s
}
.svc-card:hover {
    background: var(--surface)
}
.svc-card:hover::after {
    opacity: 1
}
.svc-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: block
}
.svc-n {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--fm);
    font-size: 11px;
    color: var(--muted)
}
.svc-title {
    font-family: var(--fd);
    font-size: 28px;
    letter-spacing: .5px;
    margin-bottom: 12px;
    text-transform: uppercase
}
.svc-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7
}
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 20px
}
.tag {
    font-family: var(--fm);
    font-size: 10px;
    padding: 3px 10px;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--muted);
    transition: all .2s
}
.svc-card:hover .tag {
    border-color: rgba(212, 175, 55, 0.35);
    color: var(--accent)
}

/* PROCESS */
#process {
    padding: 120px 5%;
    background: var(--bg2);
    position: relative;
    z-index: 1
}
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    margin-top: 64px;
    position: relative
}
.steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border)
}
.step {
    padding: 0 32px 0 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s, transform .6s
}
.step.vis {
    opacity: 1;
    transform: translateY(0)
}
.step-num {
    width: 60px;
    height: 60px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fm);
    font-size: 13px;
    color: var(--accent);
    background: var(--bg2);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    transition: border-color .3s, background .3s
}
.step:hover .step-num {
    border-color: var(--accent);
    background: rgba(212, 175, 55, 0.08)
}
.step-title {
    font-family: var(--fd);
    font-size: 26px;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 12px
}
.step-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7
}

/* PORTFOLIO */
#portfolio {
    padding: 120px 5%;
    position: relative;
    z-index: 1
}
.port-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    margin-top: 64px
}
.proj {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform .3s, border-color .3s, box-shadow .3s
}
.proj:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4)
}
.proj:nth-child(1) {
    grid-column: span 7
}
.proj:nth-child(2) {
    grid-column: span 5
}
.proj:nth-child(3) {
    grid-column: span 4
}
.proj:nth-child(4) {
    grid-column: span 8
}
.proj-thumb {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 58px
}
.p1 .proj-thumb {
    background: linear-gradient(135deg, #0f1a0a, #1e350f)
}
.p2 .proj-thumb {
    background: linear-gradient(135deg, #1a0e06, #3a1e08)
}
.p3 .proj-thumb {
    background: linear-gradient(135deg, #07100f, #0e2825)
}
.p4 .proj-thumb {
    background: linear-gradient(135deg, #180f1c, #2d1a38)
}
.proj-info {
    padding: 20px 24px 24px
}
.proj-cat {
    font-family: var(--fm);
    font-size: 10px;
    letter-spacing: .15em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 6px
}
.proj-name {
    font-family: var(--fd);
    font-size: 22px;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 8px
}
.proj-desc {
    font-size: 13px;
    color: var(--muted)
}
.proj-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--muted);
    transition: all .2s
}

.proj:hover .proj-arrow {
    border-color: var(--accent);
    color: var(--accent);
    transform: rotate(45deg)
}

/* ABOUT */
#about {
    padding: 120px 5%;
    background: var(--bg2);
    position: relative;
    z-index: 1
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 64px
}
.about-visual {
    position: relative;
    aspect-ratio: 1;
    max-width: 460px
}
.ab-main {
    position: absolute;
    inset: 0;
    border: 1px solid var(--border);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0
}
.ab-big {
    font-family: var(--fd);
    font-size: clamp(60px, 10vw, 100px);
    color: var(--accent);
    line-height: 1
}
.ab-sub {
    font-family: var(--fm);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .2em;
    text-transform: uppercase
}
.ab-tag {
    position: absolute;
    top: -1px;
    right: -1px;
    background: var(--accent);
    color: #000;
    padding: 6px 14px;
    font-family: var(--fm);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 1px solid var(--border)
}
.ab-corner {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--bg);
    padding: 16px 20px;
    border: 1px solid var(--border)
}
.ab-num {
    font-family: var(--fd);
    font-size: 28px;
    color: var(--accent2);
    line-height: 1
}
.ab-lbl {
    font-family: var(--fm);
    font-size: 9px;
    color: var(--muted);
    letter-spacing: .1em;
    text-transform: uppercase
}
.about-text p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px
}
.mv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px
}
.mv-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 20px;
    transition: border-color .2s
}
.mv-card:hover {
    border-color: rgba(212, 175, 55, 0.35)
}
.mv-lbl {
    font-family: var(--fm);
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px
}
.mv-txt {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6
}

/* TESTIMONIALS */
#testimonials {
    padding: 120px 5%;
    position: relative;
    z-index: 1
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 64px
}
.testi {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
    transition: border-color .3s, transform .3s
}
.testi:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px)
}
.testi-q {
    font-family: var(--fd);
    font-size: 80px;
    color: var(--accent);
    opacity: .15;
    line-height: .6;
    margin-bottom: 16px;
    display: block
}
.testi-txt {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 12px
}
.testi-av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fd);
    font-size: 20px;
    color: #000;
    flex-shrink: 0
}
.testi-name {
    font-weight: 500;
    font-size: 14px
}
.testi-role {
    font-size: 12px;
    color: var(--muted)
}
.stars {
    color: #d4af37;
    font-size: 12px;
    margin-bottom: 16px;
    letter-spacing: 2px
}

/* CONTACT */
#contact {
    padding: 120px 5%;
    background: var(--bg2);
    position: relative;
    z-index: 1
}
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 64px;
    align-items: start
}
.ct-info h3 {
    font-family: var(--fd);
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 20px
}
.ct-info p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 36px
}
.ct-links {
    display: flex;
    flex-direction: column;
    gap: 12px
}
.ct-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text);
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: all .2s;
    font-size: 14px
}
.ct-link:hover {
    border-color: rgba(212, 175, 55, 0.35);
    color: var(--accent)
}
.ct-icon {
    font-size: 18px;
    width: 24px;
    text-align: center
}
.fg {
    margin-bottom: 18px
}
.fg label {
    display: block;
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px
}
.fg input,
.fg textarea,
.fg select {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 12px 16px;
    color: var(--text);
    font-family: var(--fb);
    font-size: 14px;
    outline: none;
    transition: border-color .2s
}
.fg input:focus,
.fg textarea:focus,
.fg select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1)
}
.fg textarea {
    resize: vertical;
    min-height: 120px
}
.fg select option {
    background: var(--surface)
}
.btn-submit {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    transition: all .2s;
    font-family: var(--fb);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: .05em
}
.btn-submit:hover {
    background: var(--accent2);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3)
}

/* FOOTER */
footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 48px 5% 28px;
    position: relative;
    z-index: 1
}
.foot-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px
}
.foot-logo {
    font-family: var(--fd);
    font-size: 28px;
    color: var(--accent);
    letter-spacing: 3px;
    text-decoration: none
}
.foot-logo span {
    color: var(--accent2)
}
.foot-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap
}
.foot-nav a {
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s
}
.foot-nav a:hover {
    color: var(--text)
}
.foot-social {
    display: flex;
    gap: 10px
}
.soc {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    color: var(--muted);
    transition: all .2s
}
.soc:hover {
    border-color: var(--accent);
    color: var(--accent)
}
.foot-bottom {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px
}
.foot-copy {
    font-size: 12px;
    color: var(--muted)
}

/* WHATSAPP */
.wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    width: 54px;
    height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform .2s, box-shadow .2s;
    animation: up 1s 1s ease both
}
.wa:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5)
}

/* UTILS */
@keyframes up {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease
}
.reveal.vis {
    opacity: 1;
    transform: none
}
section {
    position: relative;
    z-index: 1
}

/* RESPONSIVE */
@media(max-width:900px) {
    .nav-links {
        display: none
    }

    .ham {
        display: flex
    }

    .about-grid,
    .contact-wrap {
        grid-template-columns: 1fr
    }

    .proj:nth-child(1),
    .proj:nth-child(2),
    .proj:nth-child(3),
    .proj:nth-child(4) {
        grid-column: span 12
    }

    .steps::before {
        display: none
    }

    .mv {
        grid-template-columns: 1fr
    }

    .hero-stats {
        gap: 32px
    }
}

@media(max-width:600px) {
    #hero {
        padding: 110px 5% 60px
    }

    .port-grid {
        display: flex;
        flex-direction: column
    }

    .testi-grid {
        grid-template-columns: 1fr
    }
}