:root {
    --black: #0c0c0c;
    --white: #ffffff;
    --muted: #a4a4a4;
    --line: #292929;
    --pink: #ff4fa3;
    --serif: Georgia, 'Times New Roman', serif;
    --sans: 'Manrope', sans-serif;
    --mono: 'DM Mono', monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: var(--sans);
}

a {
    color: inherit;
    text-decoration: none;
}

.eyebrow,
.portrait-note em {
    color: var(--pink);
}

.hero {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin: auto;
    max-width: 1440px;
    min-height: 100vh;
    overflow: hidden;
    padding: 80px 7vw 80px;
    position: relative;
    text-align: center;
}

.hero-orbit {
    background: radial-gradient(circle, #ff4fa33d 0, #ff4fa310 34%, transparent 67%);
    border: 1px solid #ff4fa322;
    border-radius: 50%;
    height: 610px;
    position: absolute;
    top: 185px;
    width: 610px;
}

.hero-orbit::after {
    background: var(--pink);
    border-radius: 50%;
    box-shadow: 0 0 30px var(--pink);
    content: '';
    height: 7px;
    left: 80px;
    position: absolute;
    top: 18px;
    width: 7px;
}

.eyebrow {
    font: 500 .68rem var(--mono);
    letter-spacing: .04em;
    margin: 0 0 28px;
    text-transform: uppercase;
}

.eyebrow-dot {
    animation: pulse-dot 1.8s ease-in-out infinite;
    background: var(--pink);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--pink);
    display: inline-block;
    height: 7px;
    margin-right: 9px;
    width: 7px;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 8px var(--pink);
        opacity: .75;
        transform: scale(.9);
    }
    50% {
        box-shadow: 0 0 18px var(--pink);
        opacity: 1;
        transform: scale(1.15);
    }
}

h1 {
    font-size: clamp(3.6rem, 7vw, 7.2rem);
    letter-spacing: -.085em;
    line-height: .87;
    margin: 0;
    position: relative;
    z-index: 2;
}

h1 em {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -.08em;
}

.hero-status {
    margin-bottom: 26px;
    position: relative;
    z-index: 2;
}

.hero-portrait {
    margin: -4px auto -5px;
    max-width: 500px;
    position: relative;
    width: min(65vw, 500px);
    z-index: 1;
}

.portrait-name {
    color: var(--white);
    font-size: clamp(5.5rem, 12vw, 10rem);
    font-weight: 800;
    left: 50%;
    letter-spacing: -.09em;
    line-height: .78;
    opacity: .13;
    pointer-events: none;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    top: 48%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    z-index: 0;
}

.portrait-name-last {
    display: block;
    transform: translateX(45%);
}

.portrait-name-first {
    display: block;
    transform: translateX(-10%);
}

.portrait-frame {
    position: relative;
    z-index: 1;
}

.portrait-frame::before {
    background: linear-gradient(180deg, transparent 45%, var(--black) 96%);
    bottom: 0;
    content: '';
    height: 42%;
    left: 0;
    position: absolute;
    right: 0;
    z-index: 1;
}

.portrait-frame img {
    filter: saturate(.75);
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center bottom;
    width: 100%;
}

.portrait-frame::after {
    border-bottom: 1px solid var(--pink);
    border-right: 1px solid var(--pink);
    bottom: 17px;
    content: '';
    height: 35%;
    position: absolute;
    right: -12px;
    width: 30%;
}

.portrait-note {
    bottom: 52px;
    font-size: .8rem;
    left: -18px;
    line-height: 1.2;
    position: absolute;
    text-align: left;
    transform: rotate(-90deg);
    z-index: 2;
}

.portrait-note em {
    color: var(--pink);
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
}

.portrait-index {
    bottom: 1px;
    color: var(--muted);
    font: 500 .62rem var(--mono);
    position: absolute;
    right: -16px;
    z-index: 2;
}

.hero-bottom {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    max-width: 760px;
    position: relative;
    z-index: 2;
}

.hero-copy {
    color: var(--muted);
    font-size: .96rem;
    line-height: 1.65;
    max-width: 700px;
    text-align: center;
}

.hero-copy p {
    margin: 0 0 14px;
}

.hero-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.hero-actions .whatsapp-button {
    height: 66px;
}

.button {
    align-items: center;
    border-radius: 14px;
    display: inline-flex;
    font: 800 .86rem var(--sans);
    gap: 16px;
    letter-spacing: .02em;
    padding: 10px 22px 10px 10px;
    text-transform: uppercase;
}

.button-pink {
    background: #101010;
    border: 1px solid #292929;
    color: var(--white);
    flex-shrink: 0;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.button-icon {
    align-items: center;
    background: var(--pink);
    border-radius: 10px;
    color: var(--black);
    display: grid;
    font: 500 1.65rem/1 var(--sans);
    height: 44px;
    justify-items: center;
    line-height: 1;
    padding-bottom: 6px;
    place-items: center;
    text-align: center;
    transform: translateY(-1px);
    width: 44px;
}

.button-pink:hover {
    border-color: #ff4fa3;
    box-shadow: 0 12px 30px #00000066;
    transform: translateY(-3px);
}

.hero-footer {
    align-items: center;
    border-top: 1px solid var(--line);
    bottom: 38px;
    color: var(--muted);
    display: flex;
    font: 500 .62rem var(--mono);
    gap: 35px;
    left: 7vw;
    position: absolute;
    right: 7vw;
    text-transform: uppercase;
}

.specialties {
    display: flex;
    gap: 22px;
}

.specialties span::before {
    color: var(--pink);
    content: '·';
    margin-right: 22px;
}

.specialties span:first-child::before {
    content: '';
    margin: 0;
}

.scroll-label {
    margin-left: auto;
}

.scroll-label b {
    color: var(--pink);
    font-size: 1rem;
    margin-left: 8px;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-one {
    transition-delay: .12s;
}

.reveal-delay-two {
    transition-delay: .24s;
}

.reveal-delay-three {
    transition-delay: .36s;
}

.marquee {
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    margin: 0 auto;
    max-width: 1200px;
    overflow: hidden;
    padding: 24px 0;
    position: relative;
    white-space: nowrap;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.marquee-track {
    display: flex;
    will-change: transform;
    width: max-content;
    animation: marquee-scroll 28s linear infinite;
}

.marquee-group {
    align-items: center;
    display: flex;
    font: 500 .75rem var(--mono);
    gap: 28px;
    letter-spacing: .04em;
    padding-right: 28px;
    text-transform: uppercase;
}

.marquee-group i {
    color: var(--pink);
    font-style: normal;
}

@keyframes marquee-scroll {
    to {
        transform: translateX(-50%);
    }
}

.editing-style {
    margin: 0 auto;
    max-width: 1200px;
    padding: 100px 0 100px;
}

.style-heading {
    margin-bottom: 54px;
    text-align: center;
}

.style-heading .eyebrow {
    margin-bottom: 22px;
}

.style-heading h2 {
    font-size: 4rem;
    letter-spacing: -.075em;
    line-height: .9;
    margin: 0;
}

.style-heading h2 em {
    font-family: var(--serif);
    font-weight: 400;
}

.style-cards {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.style-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 26px;
    transition: background .3s ease, border-color .3s ease;
}

.style-card:hover {
    background: #111111;
    border-color: #454545;
}

.style-card-top {
    align-items: flex-start;
    display: flex;
    justify-content: flex-start;
}

.style-icon {
    filter: brightness(0) saturate(100%) invert(42%) sepia(98%) saturate(2630%) hue-rotate(303deg) brightness(102%) contrast(103%);
    height: 28px;
    object-fit: contain;
    width: 28px;
}

.style-card h3 {
    font-size: 1.25rem;
    margin: 12px 0 12px;
    text-transform: uppercase;
}

.style-card p {
    color: var(--muted);
    font-size: .84rem;
    line-height: 1.65;
    margin: 0;
    max-width: 285px;
}

.youtube-work {
    margin: 0 auto;
    max-width: 1200px;
    padding: 30px 0 140px;
}

.youtube-heading {
    margin-bottom: 48px;
}

.youtube-heading .eyebrow {
    color: var(--pink);
    margin-bottom: 20px;
}

.youtube-heading h2 {
    font-size: 4rem;
    letter-spacing: -.075em;
    line-height: .9;
    margin: 0;
}

.youtube-heading h2 em {
    font-family: var(--serif);
    font-weight: 400;
}

.youtube-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.youtube-card {
    min-width: 0;
}

.video-trigger {
    background: #101010;
    border: 1px solid var(--line);
    border-radius: 20px;
    color: var(--white);
    cursor: pointer;
    display: block;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-align: left;
    width: 100%;
}

.video-trigger::after {
    background: linear-gradient(180deg, transparent 38%, #0c0c0ccc 100%);
    content: '';
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.video-trigger img {
    aspect-ratio: 16 / 9;
    display: block;
    filter: saturate(.75);
    object-fit: cover;
    transition: filter .35s ease, transform .5s ease;
    width: 100%;
}

.video-trigger:hover img,
.video-trigger:focus-visible img {
    filter: saturate(1);
    transform: scale(1.04);
}

.video-trigger:focus-visible {
    outline: 2px solid var(--pink);
    outline-offset: 4px;
}

.video-play {
    align-items: center;
    background: #0c0c0ccc;
    border: 1px solid #ffffff33;
    border-radius: 50%;
    display: flex;
    font-size: 1.5rem;
    height: 68px;
    justify-content: center;
    left: 50%;
    padding-left: 3px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: background .25s ease, color .25s ease, transform .25s ease;
    width: 68px;
    z-index: 1;
}

.video-trigger:hover .video-play,
.video-trigger:focus-visible .video-play {
    background: var(--pink);
    color: var(--black);
    transform: translate(-50%, -50%) scale(1.08);
}

.video-caption {
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    left: 22px;
    position: absolute;
    right: 22px;
    z-index: 1;
}

.video-caption small {
    color: var(--whitek);
    font: 500 .6rem var(--mono);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.video-caption strong {
    font-size: 1.05rem;
    line-height: 1.2;
}

.instagram-work {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 0 140px;
}

.instagram-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.instagram-card {
    min-width: 0;
}

.instagram-embed {
    aspect-ratio: 9 / 16;
    background: #101010;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.instagram-embed iframe {
    background: #101010;
    border: 0;
    height: 100%;
    pointer-events: none;
    width: 100%;
}

.instagram-trigger {
    background: transparent;
    border: 0;
    cursor: pointer;
    inset: 0;
    position: absolute;
    z-index: 2;
}

.instagram-trigger:focus-visible {
    outline: 2px solid var(--pink);
    outline-offset: 4px;
}

.instagram-trigger .video-play {
    left: 50%;
    top: 50%;
}

.instagram-trigger:hover .video-play,
.instagram-trigger:focus-visible .video-play {
    background: var(--pink);
    color: var(--black);
    transform: translate(-50%, -50%) scale(1.08);
}

.tiktok-work {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 0 140px;
}

.tiktok-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tiktok-card {
    min-width: 0;
}

.tiktok-embed {
    aspect-ratio: 9 / 16;
    background: #101010;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.tiktok-embed iframe {
    background: #101010;
    border: 0;
    height: 100%;
    pointer-events: none;
    width: 100%;
}

.tiktok-trigger {
    background: transparent;
    border: 0;
    cursor: pointer;
    inset: 0;
    position: absolute;
    color: var(--white);
    z-index: 2;
}

.tiktok-trigger:focus-visible {
    outline: 2px solid var(--pink);
    outline-offset: 4px;
}

.tiktok-trigger .video-play {
    left: 50%;
    top: 50%;
}

.tiktok-trigger:hover .video-play,
.tiktok-trigger:focus-visible .video-play {
    background: var(--pink);
    color: var(--black);
    transform: translate(-50%, -50%) scale(1.08);
}

.video-lightbox[hidden] {
    display: none;
}

.video-lightbox {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 5vw;
    position: fixed;
    z-index: 20;
}

.lightbox-backdrop {
    background: #000000e8;
    inset: 0;
    position: absolute;
}

.lightbox-panel {
    max-width: 1050px;
    position: relative;
    width: 100%;
    z-index: 1;
}

.lightbox-close {
    background: var(--pink);
    border: 0;
    border-radius: 50%;
    color: var(--black);
    cursor: pointer;
    font: 400 1.7rem/1 var(--sans);
    height: 40px;
    position: absolute;
    right: -18px;
    top: -18px;
    width: 40px;
    z-index: 2;
}

.video-frame {
    aspect-ratio: 16 / 9;
    background: #000;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
}

.video-frame.is-vertical {
    aspect-ratio: 9 / 16;
    margin: 0 auto;
    max-width: 430px;
}

.video-frame iframe {
    border: 0;
    height: 100%;
    width: 100%;
}

.process-work {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 0 150px;
}

.process-work .youtube-heading {
    text-align: center;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    list-style: none;
    margin: 76px 0 0;
    padding: 0;
    position: relative;
}

.process-timeline::before {
    background: var(--line);
    content: '';
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
    top: 17px;
}

.process-step {
    min-width: 0;
    padding-right: 24px;
    position: relative;
}

.process-marker {
    align-items: center;
    background: var(--black);
    border: 1px solid var(--pink);
    border-radius: 50%;
    display: flex;
    height: 35px;
    justify-content: center;
    position: relative;
    width: 35px;
    z-index: 1;
}

.process-marker span {
    color: var(--pink);
    font: 500 12px/1 var(--mono);
}

.process-content {
    padding-top: 28px;
}

.process-content h3 {
    font-size: 1rem;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.process-content p {
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.65;
    margin: 0;
    max-width: 190px;
}

.final-cta {
    border-top: 1px solid var(--line);
    margin: 0 auto;
    max-width: 760px;
    padding: 120px 0 160px;
    text-align: center;
}

.final-cta .eyebrow {
    margin-bottom: 22px;
}

.final-cta h2 {
    font-size: 3.5rem;
    letter-spacing: -.075em;
    line-height: .9;
    margin: 0 0 28px;
}

.final-cta h2 em {
    font-family: var(--serif);
    font-weight: 400;
}

.final-cta-copy {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 auto 30px;
    max-width: 660px;
}

.whatsapp-button {
    align-items: center;
    background: var(--pink);
    border: 1px solid var(--pink);
    border-radius: 14px;
    color: var(--black);
    display: inline-flex;
    font: 800 .78rem var(--sans);
    gap: 13px;
    padding: 10px 18px 10px 12px;
    text-transform: uppercase;
    transition: background .25s ease, box-shadow .25s ease, color .25s ease, transform .25s ease;
}

.final-cta .whatsapp-button {
    animation: pulse-cta 2.4s ease-in-out infinite;
}

@keyframes pulse-cta {
    0%, 100% {
        box-shadow: 0 0 18px 2px #ff4fa31a;
    }
    50% {
        box-shadow: 0 0 42px 14px #ff4fa34d;
    }
}

.whatsapp-icon {
    fill: currentColor;
    height: 30px;
    width: 30px;
}

.site-footer {
    border-top: 1px solid var(--line);
    margin: 0 auto;
    max-width: 1200px;
    padding: 34px 0 42px;
    text-align: center;
}

.footer-thanks {
    font-size: 2rem;
    margin: 0 0 18px;
}

.footer-thanks span {
    color: var(--pink);
    margin-left: 4px;
}

.footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    justify-content: center;
    font-size: 1.25rem;
}

.footer-contacts a {
    color: var(--muted);
    font: 500 .72rem var(--mono);
    transition: color .25s ease;
}

.footer-contacts a:hover {
    color: var(--pink);
}

.whatsapp-button:hover {
    background: transparent;
    box-shadow: 0 12px 30px #ff4fa344;
    color: var(--pink);
    transform: translateY(-3px);
}

.whatsapp-float {
    align-items: center;
    background: var(--pink);
    border: 1px solid var(--pink);
    border-radius: 50%;
    bottom: 24px;
    box-shadow: 0 10px 28px #00000066;
    color: var(--black);
    display: flex;
    height: 58px;
    justify-content: center;
    right: 24px;
    position: fixed;
    transition: background .25s ease, box-shadow .25s ease, color .25s ease, transform .25s ease;
    width: 58px;
    z-index: 15;
}

.whatsapp-float-icon {
    fill: currentColor;
    height: 30px;
    width: 30px;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    background: var(--black);
    box-shadow: 0 12px 32px #ff4fa366;
    color: var(--pink);
    outline: 2px solid var(--pink);
    outline-offset: 3px;
    transform: translateY(-4px);
}

.visually-hidden {
    height: 1px;
    margin: -1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
    clip: rect(0 0 0 0);
}

@media (max-width: 800px) {
    .hero {
        min-height: 100svh;
        padding: 60px 8vw 60px;
    }

    .hero-orbit {
        height: 390px;
        top: 220px;
        width: 390px;
    }

    .hero-status {
        margin-bottom: 20px;
    }

    h1 {
        font-size: clamp(3.3rem, 14vw, 5.2rem);
    }

    .hero-portrait {
        margin: 5px auto 0;
        width: min(90vw, 410px);
    }

    .portrait-name {
        font-size: clamp(5rem, 24vw, 8rem);
    }

    .portrait-name-last {
        transform: translateX(32%);
    }

    .portrait-name-first {
        transform: translateX(-7%);
    }

    .portrait-note {
        bottom: 44px;
        left: -18px;
    }

    .hero-bottom {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
        max-width: 430px;
        width: 100%;
    }

    .hero-copy {
        font-size: .88rem;
        text-align: center;
    }

    .hero-copy p {
        margin-bottom: 10px;
    }

    .hero-bottom .button {
        align-self: center;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-footer {
        align-items: flex-start;
        bottom: 30px;
        flex-direction: column;
        gap: 10px;
        left: 8vw;
    }

    .specialties {
        flex-wrap: wrap;
        gap: 5px 14px;
    }

    .specialties span::before {
        margin-right: 14px;
    }

    .scroll-label {
        margin-left: 0;
    }

    .editing-style {
        padding: 90px 8vw 110px;
    }

    .style-heading {
        margin-bottom: 38px;
    }

    .style-heading h2,
    .youtube-heading h2 {
        font-size: 2.5rem;
    }

    .style-cards {
        grid-template-columns: 1fr;
    }

    .style-card,
    .style-card:nth-child(-n + 3),
    .style-card:nth-child(3n) {
        border: 1px solid var(--line);
        border-radius: 14px;
        min-height: 235px;
    }

    .youtube-work {
        padding: 20px 8vw 100px;
    }

    .youtube-heading {
        margin-bottom: 34px;
    }

    .youtube-grid {
        grid-template-columns: 1fr;
    }

    .video-caption strong {
        font-size: .95rem;
    }

    .instagram-work {
        padding: 0 8vw 100px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tiktok-work {
        padding: 0 8vw 100px;
    }

    .tiktok-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-work {
        padding: 0 8vw 100px;
    }

    .process-work .youtube-heading .eyebrow {
        text-align: left;
    }

    .process-work .youtube-heading h2 {
        text-align: left;
    }

    .process-timeline {
        display: block;
        margin-top: 48px;
        padding-left: 0;
    }

    .process-timeline::before {
        bottom: 0;
        height: auto;
        left: 17.5px;
        right: auto;
        top: 0;
        width: 1px;
    }

    .process-step {
        display: grid;
        grid-template-columns: 35px 1fr;
        gap: 22px;
        padding: 0 0 38px;
    }

    .process-step:last-child {
        padding-bottom: 0;
    }

    .process-content {
        padding-top: 7px;
    }

    .process-content p {
        max-width: none;
    }

    .final-cta {
        padding: 90px 8vw 110px;
    }

    .final-cta h2 {
        font-size: 2.5rem;
    }

    .final-cta-copy {
        font-size: .88rem;
    }

    .site-footer {
        padding: 30px 8vw 36px;
    }

    .footer-thanks {
        font-size: 7vw;
    }

    .footer-contacts {
        align-items: center;
        flex-direction: column;
    }

    .whatsapp-float {
        bottom: 18px;
        height: 54px;
        right: 18px;
        width: 54px;
    }

    .lightbox-close {
        right: -5px;
        top: -48px;
    }
}