@font-face {
    font-family: 'Zaldo Sans';
    src: url('../fonts/ZaldoSans-Light.woff2') format('woff2');
    font-weight: 300;
}

@font-face {
    font-family: 'Zaldo Sans';
    src: url('../fonts/ZaldoSans-Regular.woff2') format('woff2');
    font-weight: 400;
}

@font-face {
    font-family: 'Zaldo Sans';
    src: url('../fonts/ZaldoSans-Medium.woff2') format('woff2');
    font-weight: 500;
}

:root {
    --white: #ffffff;
    --red: #f11d29;
    --black: #000000;
    --glass: rgba(255, 255, 255, .08);
}

/* ==================================
RESET
================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    overflow-x: hidden;
    background: #000;
    color: #fff;
    font-family: 'Zaldo Sans', sans-serif;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

/* ==================================
HEADER
================================== */

.sb-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;


    z-index: 9999;

    transition:
        transform .8s cubic-bezier(.22, .61, .36, 1),
        background .5s ease,
        backdrop-filter .5s ease,
        border-color .5s ease;

    will-change: transform;


}

.sb-header.header-hidden {
    transform: translateY(-120%);
}

.sb-header.header-scrolled {


    background: rgba(0, 0, 0, .12);

    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);

    border-bottom: 1px solid rgba(255, 255, 255, .08);


}

.sb-navbar {


    height: 100px;

    padding: 0 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;


}

.sb-logo {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.sb-logo img {
    width: 160px;
    height: auto;
}

/* ==================================
PREMIUM BUTTON
================================== */

.sb-contact-btn {


    position: relative;
    overflow: hidden;
    font-style: italic;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, .92);

    color: #000;

    padding: 14px 28px;

    border-radius: 999px;

    font-size: 18px;
    font-weight: 500;



    transition:
        transform .5s cubic-bezier(.22, .61, .36, 1),
        background .4s ease;


}

.sb-contact-btn::before {


    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 100%;
    height: 100%;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .7),
            transparent);

    transition: .8s ease;


}

.sb-contact-btn:hover::before {
    left: 120%;
}

.sb-contact-btn:hover {


    background: #fff;

    transform: translateY(-4px);


}

/* ==================================
HERO SECTION
================================== */

.sb-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.sb-hero-video {


    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.05);

}

.sb-overlay {


    position: absolute;
    inset: 0;

    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, .35),
            rgba(0, 0, 0, .08),
            rgba(0, 0, 0, .45));


}

.hero-content {


    position: relative;
    z-index: 2;

    width: 100%;
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;


}

/* ==================================
TITLE
================================== */

.sb-title {


    font-size: clamp(110px, 11vw, 260px);

    line-height: .82;

    font-weight: 300;

    font-style: italic;

    text-transform: uppercase;

    color: #fff;

    letter-spacing: -.04em;

    text-shadow:
        0 20px 80px rgba(0, 0, 0, .35);

    margin: 0;


}

.line-1,
.line-2 {
    display: block;
}

.sb-red {
    color: var(--red);
}

/* ==================================
BOTTOM TEXT
================================== */

.coming-text {


    position: absolute;

    left: 50%;
    bottom: 45px;

    transform: translateX(-50%);

    width: 100%;
    max-width: 1100px;

    text-align: center;

    font-size: 18px;

    font-weight: 500;

    font-style: italic;

    text-transform: uppercase;

    letter-spacing: .08em;

    color: rgba(255, 255, 255, .95);


}

.coming-text span {
    color: var(--red);
}

/* ==================================
SERVICES
================================== */

.anifx-services {

    background: #000;

    padding: 90px 0 90px 0;

    overflow: hidden;
}

.anifx-services-list {

    display: flex;

    justify-content: center;
    align-items: center;

    gap: clamp(40px, 3vw, 60px);

    width: 100%;
}

.service-item {

    cursor: pointer;
}

.service-text-wrap {

    height: 105px;

    overflow: hidden;
}

.service-text-inner {

    display: flex;
    flex-direction: column;

    transition: transform .85s cubic-bezier(.22, .61, .36, 1);
}

.service-item:hover .service-text-inner {

    transform: translateY(-105px);
}

.service-text-inner span {

    display: flex;

    align-items: center;
    justify-content: center;

    height: 105px;

    font-size: clamp(48px, 4vw, 82px);

    line-height: 1.1;

    font-style: italic;

    font-weight: 300;

    color: #fff;

    white-space: nowrap;

    letter-spacing: -1px;

    padding-top: 6px;
}

.service-text-inner span:last-child {

    color: #f11d29;
}

/* ==================================
CONTACT SECTION
================================== */

.anifx-contact {

    position: relative;

    padding: 0 0 90px;

    background: #000;

    overflow: hidden;
}

.contact-bg-text {

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    font-size: 22vw;

    font-weight: 300;

    font-style: italic;

    letter-spacing: -.05em;

    color: rgba(255, 255, 255, .015);

    white-space: nowrap;

    pointer-events: none;
}

.anifx-contact .container-fluid {

    padding-left: 60px;
    padding-right: 60px;
}

.anifx-contact-wrapper {

    display: grid;

    grid-template-columns: 58% 42%;

    gap: 80px;

    align-items: flex-start;

    position: relative;

    z-index: 2;
}

.anifx-contact-wrapper::after {

    content: "";

    position: absolute;

    top: 0;

    right: 42%;

    width: 1px;

    height: 100%;

    background: rgba(255, 255, 255, .06);
}

.contact-tag {

    display: inline-block;

    margin-bottom: 25px;

    color: #f11d29;

    font-size: 18px;

    letter-spacing: .35em;

    text-transform: uppercase;
}

.contact-title {

    font-size: clamp(60px, 5vw, 100px);

    line-height: .9;

    font-weight: 300;

    font-style: italic;

    margin-bottom: 80px;

    max-width: 900px;
}

.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;
}

.input-group {

    margin-bottom: 20px;
}

.input-group input {

    width: 100%;

    background: transparent;

    border: none;

    border-bottom: 1px solid rgba(255, 255, 255, .12);

    padding: 20px 0;

    color: #fff;

    font-size: 14px;

    font-family: 'Zaldo Sans', sans-serif !important;

    outline: none;

    transition: .4s ease;
}

.input-group input:focus {

    border-bottom-color: #f11d29;
}

.input-group input::placeholder {

    color: rgba(255, 255, 255, .45);
}

.contact-btn {

    margin-top: 30px;

    min-width: 320px;

    height: 72px;

    border: none;

    border-radius: 999px;

    background: #fff;

    color: #000;

    font-family: 'Zaldo Sans', sans-serif !important;

    font-size: 18px;

    font-style: oblique 12deg;

    font-weight: 400;

    letter-spacing: .22em;

    text-transform: uppercase;

    cursor: pointer;

    transition: all .45s cubic-bezier(.22, .61, .36, 1);
}

.contact-btn:hover {

    background: #f11d29;

    color: #fff;

    transform: translateY(-4px);
}

.contact-right {

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 35px;

    padding-left: 60px;
}

.social-label {

    color: #f11d29;

    font-size: 18px;

    letter-spacing: .35em;

    text-transform: uppercase;

    margin-bottom: 15px;
}

.contact-link {

    color: #fff;

    font-size: clamp(48px, 4vw, 82px);

    font-style: italic;

    font-weight: 300;

    line-height: 1;

    transition: all .45s cubic-bezier(.22, .61, .36, 1);
}

.contact-link:hover {

    color: #f11d29;

    transform: translateX(12px);

    letter-spacing: .03em;
}

/* ==================================
copyright
================================== */
.anifx-footer-signature {

    background: #000;

    text-align: center;

    padding: 0px 0px 90px 0px;
}

.anifx-footer-signature span {

    display: block;

    color: rgba(255, 255, 255, .35);

    font-size: 14px;

    letter-spacing: 8px;

    text-transform: uppercase;

    margin-bottom: 15px;
}

.anifx-footer-signature h2 {

    margin: 0;

    color: #fff;

    font-size: clamp(48px, 4vw, 82px);

    font-weight: 400;

    font-style: italic;

    letter-spacing: -1px;

    line-height: 1;
}

.anifx-footer-signature p {

    margin-top: 20px;

    color: rgba(255, 255, 255, .35);

    font-size: 14px;

    letter-spacing: 2px;

    text-transform: uppercase;
}