:root {
    --red: #e45458;
    --red-dark: #c74347;
    --ink: #252525;
    --muted: #747474;
    --line: #e9e9e9;
    --soft: #f6f6f6;
    --white: #ffffff;
    --container: 1180px;
    --shadow: 0 22px 60px rgba(0, 0, 0, .10)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

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

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

button, input, textarea {
    font: inherit
}

section {
    scroll-margin-top: 92px
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    transition: .3s
}

.site-header.scrolled {
    box-shadow: 0 10px 35px rgba(0, 0, 0, .07)
}

.nav-wrap {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.brand {
    min-width: 185px;
    display: inline-flex;
    flex-direction: column;
    line-height: 1
}

.brand-main {
    display: flex;
    align-items: flex-end;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: -2.7px
}

.brand-main .im {
    color: var(--red);
    font-weight: 700
}

.brand-main .par {
    color: #666
}

.brand-sub {
    margin-top: 3px;
    margin-left: 4px;
    color: #858585;
    font-size: 8px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 700
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    font-size: 13px;
    color: #5f5f5f;
    letter-spacing: .2px
}

.desktop-nav a {
    position: relative;
    padding: 33px 0 30px;
    white-space: nowrap
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    height: 2px;
    transform: scaleX(0);
    background: var(--red);
    transform-origin: center;
    transition: .22s
}

.desktop-nav a.active, .desktop-nav a:hover {
    color: var(--ink)
}

.desktop-nav a.active::after, .desktop-nav a:hover::after {
    transform: scaleX(1)
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: 0 0;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.menu-toggle span, .menu-toggle span::after, .menu-toggle span::before {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    transition: .25s;
    position: relative
}

.menu-toggle span::before {
    position: absolute;
    top: -7px
}

.menu-toggle span::after {
    position: absolute;
    top: 7px
}

.menu-toggle.open span {
    background: 0 0
}

.menu-toggle.open span::before {
    top: 0;
    transform: rotate(45deg)
}

.menu-toggle.open span::after {
    top: 0;
    transform: rotate(-45deg)
}

.mobile-nav {
    display: none;
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 8px 24px 20px
}

.mobile-nav.open {
    display: block
}

.mobile-nav a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    color: #555
}

.hero {
    min-height: 760px;
    padding-top: 84px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative
}

.hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border: 1px solid #f1f1f1;
    border-radius: 50%;
    left: -330px;
    top: 140px
}

.hero-grid {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    align-items: center;
    gap: 36px;
    min-height: 676px
}

.hero-copy {
    padding: 45px 0 50px;
    position: relative;
    z-index: 2
}

.eyebrow {
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 24px
}

.hero h1 {
    margin: 0;
    font-size: clamp(58px, 6vw, 91px);
    line-height: .92;
    font-weight: 300;
    letter-spacing: -5px;
    color: #3b3b3b
}

.hero h1 strong {
    font-weight: 700;
    color: var(--red)
}

.hero-tagline {
    margin: 28px 0 0;
    color: #555;
    font-size: 27px;
    font-weight: 300;
    letter-spacing: -.8px;
    line-height: 1.15
}

.hero-tagline span {
    display: block
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 20px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid var(--red);
    background: var(--red);
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: .25s
}

.btn:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px)
}

.btn.ghost {
    background: 0 0;
    color: #555;
    border-color: #dadada
}

.btn.ghost:hover {
    border-color: var(--red);
    color: var(--red)
}

.hero-media {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero-media::before {
    content: "";
    position: absolute;
    width: 510px;
    height: 510px;
    background: #f4f4f4;
    border-radius: 50%;
    z-index: 0
}

.hero-media img {
    position: relative;
    z-index: 1;
    width: min(100%, 760px);
    filter: drop-shadow(0 30px 45px rgba(0, 0, 0, .12));
    transform: rotate(-1deg)
}

.floating-label {
    position: absolute;
    right: 2%;
    bottom: 15%;
    z-index: 2;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 14px 18px;
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: #747474
}

.about {
    padding: 110px 0;
    background: #fafafa
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 76px;
    align-items: center
}

.section-kicker {
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 10px;
    font-weight: 800;
    margin-bottom: 14px
}

.section-title {
    margin: 0 0 24px;
    font-size: clamp(41px, 4.4vw, 66px);
    line-height: .98;
    font-weight: 300;
    letter-spacing: -3.5px;
    color: #333
}

.section-title strong {
    font-weight: 700
}

.about-copy p {
    color: #6e6e6e;
    font-size: 15px;
    line-height: 1.85;
    margin: 0 0 17px;
    max-width: 600px
}

.about-image {
    position: relative;
    min-height: 470px
}

.about-image::before {
    content: "";
    position: absolute;
    inset: 35px -28px -30px 45px;
    border: 1px solid #ddd
}

.about-image img {
    position: relative;
    width: 100%;
    height: 470px;
    object-fit: cover;
    box-shadow: 0 22px 50px rgba(0, 0, 0, .1)
}

.years-badge {
    position: absolute;
    left: -30px;
    bottom: -35px;
    background: var(--red);
    color: #fff;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 40px rgba(228, 84, 88, .24)
}

.years-badge strong {
    font-size: 44px;
    line-height: 1
}

.years-badge span {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 8px
}

.services {
    padding: 110px 0 95px
}

.services-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 48px
}

.services-head p {
    max-width: 420px;
    color: #7b7b7b;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 8px
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line)
}

.service-card {
    min-height: 360px;
    padding: 36px 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    transition: .3s;
    background: #fff
}

.service-card::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 0;
    background: var(--red);
    transition: .35s cubic-bezier(.22, .61, .36, 1);
    z-index: 0
}

.service-card:hover::before {
    height: 100%
}

.service-card>* {
    position: relative;
    z-index: 1
}

.service-num {
    font-size: 11px;
    letter-spacing: 2px;
    color: #aaa;
    transition: .25s
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 58px 0 28px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: .25s
}

.service-icon svg {
    width: 26px;
    height: 26px;
    stroke: #444;
    fill: none;
    stroke-width: 1.6
}

.service-card h3 {
    margin: 0 0 12px;
    font-size: 26px;
    font-weight: 300;
    letter-spacing: -1px
}

.service-card p {
    margin: 0;
    color: #7a7a7a;
    font-size: 13px;
    line-height: 1.6
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow)
}

.service-card:hover .service-num, .service-card:hover h3, .service-card:hover p {
    color: #fff
}

.service-card:hover .service-icon {
    border-color: rgba(255, 255, 255, .55)
}

.service-card:hover .service-icon svg {
    stroke: white
}

.portfolio {
    padding: 100px 0;
    background: #242424;
    color: #fff
}

.portfolio .section-title {
    color: #fff
}

.portfolio .section-kicker {
    color: #ff7b7f
}

.portfolio-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 44px
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.filter-btn {
    padding: 9px 14px;
    border: 1px solid #444;
    color: #bbb;
    background: 0 0;
    cursor: pointer;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: .2s
}

.filter-btn.active, .filter-btn:hover {
    border-color: var(--red);
    color: #fff;
    background: var(--red)
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px
}

.work-card {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    background: #333;
    cursor: pointer
}

.work-card.wide {
    grid-column: span 2;
    aspect-ratio: 2/1
}

.work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.85);
    transition: .45s
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, .78));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    opacity: .88;
    transition: .3s
}

.work-overlay span {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff9da0
}

.work-overlay h4 {
    margin: 7px 0 0;
    font-size: 20px;
    font-weight: 400
}

.work-card:hover img {
    transform: scale(1.075);
    filter: saturate(1.08)
}

.work-card:hover .work-overlay {
    background: linear-gradient(180deg, rgba(228, 84, 88, .08), rgba(0, 0, 0, .82))
}

.work-card.hidden {
    display: none
}

.cases {
    padding: 110px 0
}

.cases-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: start
}

.case-stack {
    border-top: 1px solid var(--line)
}

.case-item {
    display: grid;
    grid-template-columns: 66px 1fr 36px;
    align-items: center;
    gap: 20px;
    min-height: 112px;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
    transition: .25s
}

.case-item:hover {
    padding-left: 14px
}

.case-item .n {
    font-size: 11px;
    letter-spacing: 2px;
    color: #aaa
}

.case-item h4 {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 400
}

.case-item p {
    margin: 0;
    color: #8a8a8a;
    font-size: 12px
}

.case-arrow {
    font-size: 22px;
    color: #bbb;
    transition: .2s
}

.case-item:hover .case-arrow {
    color: var(--red);
    transform: translateX(5px)
}

.clients {
    padding: 95px 0;
    background: #f7f7f7
}

.clients-inner {
    text-align: center
}

.clients .section-title {
    margin-bottom: 45px
}

.clients-logo {
    background: #fff;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .035)
}

.clients-logo img {
    width: min(100%, 760px);
    margin: auto;
    opacity: .74;
    filter: grayscale(1)
}

.blog {
    padding: 20px 0 90px;
    background: #ededed;
    min-height: calc(100vh - 84px)
}

.blog-shell {
    width: min(calc(100% - 30px), 980px);
    margin: 0 auto;
    background: #fff;
    padding: 20px 21px 42px
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 33px;
    margin: 0
}

.blog-card {
    background: #f3f3f3;
    min-width: 0;
    display: flex;
    flex-direction: column;
    transition: transform .22s, box-shadow .22s;
    overflow: hidden
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 13px 30px rgba(0, 0, 0, .1)
}

.blog-cover-link {
    display: block;
    width: 100%;
    height: 162px;
    overflow: hidden;
    background: #ddd
}

.blog-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s
}

.blog-card:hover .blog-cover {
    transform: scale(1.025)
}

.blog-content {
    min-height: 250px;
    padding: 27px 23px 23px;
    display: flex;
    flex-direction: column
}

.blog-author-row {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) 18px;
    gap: 10px;
    align-items: start;
    margin-bottom: 17px
}

.blog-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover
}

.blog-author-meta {
    min-width: 0;
    font-size: 12px;
    line-height: 1.35;
    color: #222
}

.blog-author-name {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.blog-date-line {
    display: block;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #222
}

.blog-more {
    border: 0;
    background: 0 0;
    padding: 0;
    color: #111;
    font-size: 21px;
    line-height: 16px;
    cursor: default;
    letter-spacing: 1px
}

.blog-card h3 {
    margin: 0;
    color: #171717;
    font-size: 22px;
    line-height: 1.42;
    font-weight: 600;
    letter-spacing: -.35px
}

.blog-title-link {
    color: inherit;
    text-decoration: none
}

.blog-title-link:hover {
    color: #000
}

.blog-spacer {
    flex: 1;
    min-height: 22px
}

.blog-stats {
    min-height: 37px;
    border-top: 1px solid #cdcdcd;
    display: flex;
    align-items: end;
    gap: 18px;
    padding-top: 15px;
    font-size: 11px;
    color: #171717
}

.blog-stat {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap
}

.blog-stat svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45
}

.blog-heart {
    margin-left: auto;
    color: #ff3a3f;
    display: inline-flex;
    align-items: center
}

.blog-heart svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8
}

.contact {
    padding: 110px 0 0;
    background: #262626;
    color: #fff
}

.contact .section-title {
    color: #fff
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    padding-bottom: 90px
}

.contact-copy p {
    color: #a9a9a9;
    font-size: 14px;
    line-height: 1.8;
    max-width: 430px
}

.contact-lines {
    margin-top: 38px
}

.contact-line {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #393939;
    color: #d7d7d7;
    font-size: 13px;
    line-height: 1.5
}

.contact-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    margin-top: 7px;
    flex: 0 0 auto
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.field.full {
    grid-column: 1/-1
}

.field label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #aaa
}

.field input, .field textarea {
    width: 100%;
    border: 1px solid #494949;
    background: #303030;
    color: #fff;
    padding: 15px 16px;
    outline: 0;
    transition: .2s;
    border-radius: 0
}

.field input:focus, .field textarea:focus {
    border-color: var(--red)
}

.field textarea {
    min-height: 135px;
    resize: vertical
}

.form-status {
    grid-column: 1/-1;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 16px;
    border: 1px solid transparent;
    border-radius: 10px;
    animation: .38s both form-status-in
}

.form-status-success {
    color: #e8fff4;
    border-color: rgba(56, 211, 143, .3);
    background: linear-gradient(135deg, rgba(32, 151, 99, .2), rgba(24, 102, 73, .12));
    box-shadow: 0 10px 28px rgba(0, 0, 0, .12)
}

.form-status-error {
    color: #fff0f1;
    border-color: rgba(235, 82, 90, .38);
    background: linear-gradient(135deg, rgba(235, 82, 90, .2), rgba(130, 35, 42, .12))
}

.form-status-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 38px;
    border-radius: 50%;
    background: #2bbf7f;
    box-shadow: 0 5px 16px rgba(43, 191, 127, .24)
}

.form-status-error .form-status-icon {
    background: var(--red);
    box-shadow: 0 5px 16px rgba(235, 82, 90, .24)
}

.form-status-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.form-status-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0
}

.form-status-copy strong {
    color: #fff;
    font-size: 14px;
    line-height: 1.25
}

.form-status-copy>span {
    color: #c7d7d0;
    font-size: 12px;
    line-height: 1.45
}

.form-status-error .form-status-copy>span {
    color: #dac6c8
}

.form-status-close {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex: 0 0 30px;
    margin-left: auto;
    border: 0;
    border-radius: 50%;
    background: 0 0;
    color: rgba(255, 255, 255, .72);
    cursor: pointer;
    transition: background .2s, color .2s
}

.form-status-close:focus-visible, .form-status-close:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    outline: 0
}

.form-status-close svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round
}

.form-status.is-hiding {
    pointer-events: none;
    animation: .25s forwards form-status-out
}

@keyframes form-status-in {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes form-status-out {
    from {
        opacity: 1;
        transform: translateY(0)
    }

    to {
        opacity: 0;
        transform: translateY(-6px)
    }
}

.contact-form .btn {
    min-width: 101px;
    justify-self: start
}

.contact-form .btn:disabled {
    cursor: wait;
    opacity: .72
}

.footer {
    border-top: 1px solid #3a3a3a;
    min-height: 86px;
    display: flex;
    align-items: center
}

.footer-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    color: #878787;
    font-size: 10px;
    letter-spacing: .7px;
    text-transform: uppercase
}

.socials {
    display: flex;
    gap: 10px
}

.social {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid #424242;
    transition: .2s
}

.social:hover {
    background: var(--red);
    border-color: var(--red)
}

.social svg {
    width: 15px;
    height: 15px;
    fill: white
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s, transform .75s
}

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

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, .88);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px
}

.lightbox.open {
    display: flex
}

.lightbox img {
    max-width: min(1100px, 92vw);
    max-height: 86vh;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .4)
}

.lightbox-close {
    position: absolute;
    top: 22px;
    right: 26px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .35);
    background: 0 0;
    color: #fff;
    font-size: 25px;
    cursor: pointer
}

.showcase-section {
    padding: 105px 0;
    background: #fff
}

.showcase-section.alt {
    background: #f4f4f4
}

.showcase-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 36px;
    margin-bottom: 42px
}

.showcase-intro p {
    max-width: 470px;
    margin: 0 0 8px;
    color: #777;
    font-size: 14px;
    line-height: 1.8
}

.design-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px
}

.design-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #e9e9e9;
    cursor: pointer;
    position: relative
}

.design-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .38s, filter .38s
}

.design-item::after {
    content: "Ver trabalho";
    position: absolute;
    inset: auto 12px 12px 12px;
    padding: 9px 11px;
    background: rgba(255, 255, 255, .92);
    color: #252525;
    font-size: 9px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transform: translateY(12px);
    opacity: 0;
    transition: .25s
}

.design-item:hover img {
    transform: scale(1.05);
    filter: saturate(1.06)
}

.design-item:hover::after {
    transform: none;
    opacity: 1
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px
}

.video-card {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #ddd;
    cursor: pointer
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s, filter .35s
}

.video-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, .52));
    z-index: 1;
    transition: .25s
}

.video-card:hover img {
    transform: scale(1.055)
}

.video-card:hover::before {
    background: linear-gradient(180deg, rgba(228, 84, 88, .05), rgba(0, 0, 0, .65))
}

.play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, .94);
    z-index: 2;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18)
}

.play-button::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 13px solid var(--red);
    margin-left: 3px
}

.video-card span.video-label {
    position: absolute;
    z-index: 2;
    left: 16px;
    right: 16px;
    bottom: 14px;
    color: #fff;
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    font-weight: 700
}

.video-cta {
    margin-top: 28px;
    display: flex;
    justify-content: center
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px
}

.press-card {
    background: #fff;
    border: 1px solid #e3e3e3;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: .25s
}

.press-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .09);
    border-color: transparent
}

.press-image {
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
    background: #ddd
}

.press-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s
}

.press-card:hover .press-image img {
    transform: scale(1.045)
}

.press-body {
    padding: 23px 23px 26px
}

.press-tag {
    color: var(--red);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.7px;
    font-weight: 800;
    margin-bottom: 9px
}

.press-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -.5px
}

.press-card p {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.65
}

.press-feature {
    grid-column: span 3;
    background: #272727;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 255px;
    overflow: hidden
}

.press-feature-copy {
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.press-feature .press-tag {
    color: #ff8b8f
}

.press-feature h3 {
    margin: 0 0 12px;
    font-size: 30px;
    font-weight: 400
}

.press-feature p {
    margin: 0;
    color: #c8c8c8;
    font-size: 14px;
    line-height: 1.7
}

.press-feature-visual {
    min-height: 255px;
    background: radial-gradient(circle at 30% 30%, rgba(228, 84, 88, .85), transparent 31%), radial-gradient(circle at 70% 60%, rgba(255, 255, 255, .15), transparent 25%), #1f1f1f;
    display: grid;
    place-items: center
}

.press-feature-icon {
    width: 90px;
    height: 90px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 34px
}

@media (max-width:1020px) {
    .design-gallery, .video-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }

    .press-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .press-feature {
        grid-column: span 2
    }
}

@media (max-width:680px) {
    .showcase-section {
        padding: 75px 0
    }

    .showcase-intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px
    }

    .design-gallery, .video-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px
    }

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

    .press-feature {
        grid-column: auto;
        grid-template-columns: 1fr
    }

    .press-feature-visual {
        min-height: 180px
    }

    .press-feature-copy {
        padding: 28px 24px
    }

    .press-feature h3 {
        font-size: 25px
    }
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
    margin-right: 4px
}

.header-social-link {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: #111;
    transition: transform .2s, color .2s
}

.header-social-link:hover {
    color: var(--red);
    transform: translateY(-2px)
}

.header-social-link svg {
    width: 24px;
    height: 24px;
    display: block;
    fill: currentColor
}

.header-social-link.linkedin svg {
    width: 25px;
    height: 25px
}

.header-social-link.youtube svg {
    width: 29px;
    height: 22px
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1500;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
    transition: transform .2s, box-shadow .2s
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 17px 36px rgba(0, 0, 0, .28)
}

.whatsapp-float svg {
    width: 34px;
    height: 34px;
    fill: currentColor
}

.whatsapp-float::after {
    content: "WhatsApp";
    position: absolute;
    right: 72px;
    background: #1f1f1f;
    color: #fff;
    font-size: 11px;
    letter-spacing: .4px;
    padding: 8px 10px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(6px);
    transition: .2s
}

.whatsapp-float:hover::after {
    opacity: 1;
    transform: none
}

@media (max-width:1020px) {
    .header-socials {
        margin-left: auto;
        gap: 10px
    }
}

@media (max-width:680px) {
    .header-socials {
        gap: 7px;
        margin-right: 0
    }

    .header-social-link {
        width: 25px;
        height: 25px
    }

    .header-social-link svg {
        width: 20px;
        height: 20px
    }

    .header-social-link.youtube svg {
        width: 25px;
        height: 19px
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;
        right: 16px;
        bottom: 16px
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px
    }

    .whatsapp-float::after {
        display: none
    }
}

.internal-page {
    display: none;
    padding-top: 84px
}

.internal-page.active {
    display: block
}

body.internal-open .home-only {
    display: none !important
}

body.internal-open main {
    padding-top: 0
}

.internal-page .showcase-section, .internal-page.blog {
    padding-top: 42px
}

.internal-back {
    width: min(calc(100% - 48px), var(--container));
    margin: 22px auto 0
}

.internal-back a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #777;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer
}

.internal-back a:hover {
    color: var(--red)
}

@media (max-width:680px) {
    .internal-page {
        padding-top: 72px
    }

    .internal-page .showcase-section, .internal-page.blog {
        padding-top: 25px
    }

    .internal-back {
        width: min(calc(100% - 30px), var(--container));
        margin-top: 16px
    }
}

@media (max-width:1020px) {
    .desktop-nav {
        display: none
    }

    .menu-toggle {
        display: flex
    }

    .hero {
        min-height: auto
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 65px 0
    }

    .hero-copy {
        text-align: center
    }

    .hero-actions {
        justify-content: center
    }

    .hero-media {
        min-height: 460px
    }

    .hero-media img {
        max-width: 700px
    }

    .hero-media::before {
        width: 430px;
        height: 430px
    }

    .floating-label {
        right: 8%
    }

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

    .about-grid {
        gap: 65px
    }

    .about-copy {
        max-width: 750px
    }

    .service-grid, .work-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px
    }

    .contact-grid {
        gap: 50px
    }
}

@media (max-width:680px) {
    .container {
        width: min(calc(100% - 30px), var(--container))
    }

    .nav-wrap {
        height: 72px
    }

    section {
        scroll-margin-top: 75px
    }

    .brand-main {
        font-size: 31px
    }

    .hero {
        padding-top: 72px
    }

    .hero-grid {
        padding: 38px 0 45px
    }

    .hero h1 {
        font-size: 55px;
        letter-spacing: -3px
    }

    .hero-tagline {
        font-size: 22px
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 300px;
        margin: 30px auto 0
    }

    .hero-media {
        min-height: 330px
    }

    .hero-media::before {
        width: 300px;
        height: 300px
    }

    .floating-label {
        display: none
    }

    .about, .blog, .cases, .clients, .portfolio, .services {
        padding: 78px 0
    }

    .section-title {
        font-size: 44px;
        letter-spacing: -2.6px
    }

    .about-image, .about-image img {
        min-height: 0;
        height: 320px
    }

    .about-image::before {
        inset: 25px -12px -20px 20px
    }

    .years-badge {
        left: -5px;
        bottom: -25px;
        width: 105px;
        height: 105px
    }

    .years-badge strong {
        font-size: 36px
    }

    .portfolio-head, .services-head {
        align-items: flex-start;
        flex-direction: column
    }

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

    .service-card {
        min-height: 285px
    }

    .service-icon {
        margin: 35px 0 24px
    }

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

    .work-card, .work-card.wide {
        grid-column: auto;
        aspect-ratio: 4/3
    }

    .cases-grid {
        gap: 35px
    }

    .case-item {
        grid-template-columns: 45px 1fr 25px;
        gap: 12px
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .blog {
        padding: 12px 0 55px
    }

    .blog-shell {
        width: min(calc(100% - 18px), 980px);
        padding: 12px
    }

    .blog-cover-link {
        height: auto;
        aspect-ratio: 442/250
    }

    .blog-content {
        min-height: 235px;
        padding: 22px 20px 20px
    }

    .blog-card h3 {
        font-size: 20px
    }

    .contact {
        padding-top: 80px
    }

    .contact-form {
        grid-template-columns: 1fr
    }

    .field.full, .form-status {
        grid-column: auto
    }

    .footer {
        padding: 24px 0
    }

    .footer-inner {
        flex-direction: column;
        text-align: center
    }
}

.site-footer-modern {
    position: relative;
    background: radial-gradient(circle at 15% 0, rgba(228, 84, 88, .1), transparent 28%), linear-gradient(180deg, #242426 0, #1f2022 100%);
    color: #fff;
    border-top: 3px solid var(--red);
    overflow: hidden
}

.site-footer-modern::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 460px;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
    opacity: .5
}

.footer-modern-main {
    min-height: 142px;
    display: grid;
    grid-template-columns: 220px minmax(360px, 1fr) auto;
    align-items: center;
    gap: 48px;
    padding: 28px 0 24px
}

.footer-modern-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1
}

.footer-modern-logo {
    display: flex;
    align-items: flex-end;
    font-size: 34px;
    font-weight: 300;
    letter-spacing: -2.7px
}

.footer-modern-logo .im {
    color: var(--red);
    font-weight: 700
}

.footer-modern-logo .par {
    color: #f2f2f2
}

.footer-modern-sub {
    margin: 5px 0 0 3px;
    color: #858589;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 4.6px;
    text-transform: uppercase
}

.footer-modern-tagline {
    margin: 14px 0 0;
    max-width: 205px;
    color: #9d9da2;
    font-size: 11px;
    line-height: 1.5
}

.footer-modern-contact {
    min-width: 0
}

.footer-modern-contact-label {
    margin-bottom: 6px;
    color: var(--red);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase
}

.footer-modern-email {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -.25px;
    transition: .2s
}

.footer-modern-email:hover {
    color: #ff7d80
}

.footer-modern-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 18px;
    margin-top: 10px;
    color: #a8a8ad;
    font-size: 11px;
    line-height: 1.55
}

.footer-modern-details a {
    color: #d4d4d7;
    transition: .2s
}

.footer-modern-details a:hover {
    color: #fff
}

.footer-modern-detail {
    display: inline-flex;
    align-items: center;
    gap: 7px
}

.footer-modern-detail::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--red);
    flex: 0 0 auto
}

.footer-modern-address {
    margin-top: 6px;
    color: #818187;
    font-size: 10px;
    line-height: 1.5
}

.footer-modern-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px
}

.footer-modern-socials {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    background: rgba(255, 255, 255, .025)
}

.footer-modern-social {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #d9d9dc;
    transition: .2s
}

.footer-modern-social:hover {
    color: #fff;
    background: var(--red);
    transform: translateY(-2px)
}

.footer-modern-social svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor
}

.footer-modern-rule {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, .1)
}

.footer-modern-cenp {
    width: 132px;
    min-width: 132px;
    min-height: 56px;
    padding: 11px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 7px;
    background: #f4f5f3;
    transition: transform .2s, box-shadow .2s
}

.footer-modern-cenp:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, .18)
}

.footer-modern-cenp img {
    display: block;
    width: 100%;
    height: auto
}

.footer-modern-bottom {
    min-height: 39px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    color: #68686d;
    font-size: 8px;
    letter-spacing: .8px;
    text-transform: uppercase
}

.footer-modern-top {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #77777c;
    transition: .2s
}

.footer-modern-top:hover {
    color: #cfcfd2
}

.footer-modern-top svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7
}

@media (max-width:1020px) {
    .footer-modern-main {
        grid-template-columns: 180px 1fr;
        gap: 28px
    }

    .footer-modern-actions {
        grid-column: 1/-1;
        justify-content: center;
        margin-top: -4px
    }

    .footer-modern-tagline {
        max-width: 170px
    }
}

@media (max-width:680px) {
    .site-footer-modern {
        border-top-width: 2px
    }

    .footer-modern-main {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 28px 0 22px;
        text-align: center
    }

    .footer-modern-brand {
        align-items: center
    }

    .footer-modern-tagline {
        display: none
    }

    .footer-modern-contact {
        text-align: center
    }

    .footer-modern-details {
        justify-content: center;
        gap: 7px 14px
    }

    .footer-modern-address {
        max-width: 330px;
        margin: 7px auto 0
    }

    .footer-modern-actions {
        grid-column: auto;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap
    }

    .footer-modern-rule {
        height: 32px
    }

    .footer-modern-cenp {
        width: 122px;
        min-width: 122px
    }

    .footer-modern-bottom {
        min-height: 48px;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        text-align: center
    }
}

@media (max-width:430px) {
    .footer-modern-details {
        flex-direction: column
    }

    .footer-modern-detail::before, .footer-modern-rule {
        display: none
    }

    .footer-modern-actions {
        flex-direction: column
    }
}
/* Footer visibility */.footer-modern-main.footer-modern-columns-1{grid-template-columns:minmax(0,1fr)}.footer-modern-main.footer-modern-columns-2{grid-template-columns:repeat(2,minmax(0,1fr))}.footer-modern-main.footer-modern-columns-1>*{justify-self:center;text-align:center}
/* Dynamic service columns */.service-grid.service-grid-cols-1{grid-template-columns:1fr}.service-grid.service-grid-cols-2{grid-template-columns:repeat(2,1fr)}.service-grid.service-grid-cols-3{grid-template-columns:repeat(3,1fr)}
/* Hidden companion layout */.hero-grid.visibility-single,.about-grid.visibility-single,.contact-grid.visibility-single{grid-template-columns:minmax(0,1fr)}.hero-grid.visibility-single .hero-copy,.about-grid.visibility-single .about-copy,.contact-grid.visibility-single .contact-copy{width:min(100%,850px)}
@media(max-width:1020px){.service-grid.service-grid-cols-3,.service-grid.service-grid-cols-4{grid-template-columns:repeat(2,1fr)}}@media(max-width:680px){.service-grid.service-grid-cols-2,.service-grid.service-grid-cols-3,.service-grid.service-grid-cols-4{grid-template-columns:1fr}}
