/* =========================================================
   13M - 13musicdj.com
   Main Stylesheet
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --black: #050505;
    --black-soft: #0b0b0b;
    --dark: #111111;
    --dark-light: #181818;

    --white: #ffffff;
    --gray-light: #d2d2d2;
    --gray: #8b8b8b;
    --gray-dark: #555555;

    --accent: #ffffff;

    --container: 1280px;
    --header-height: 90px;

    --transition: 0.3s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;

    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    background: none;
}

ul,
ol {
    list-style: none;
}


/* =========================================================
   GENERAL
========================================================= */

.section {
    width: 100%;
    padding: 120px 6%;
}

.section-heading {
    max-width: var(--container);
    margin: 0 auto 70px;
}

.section-heading > span,
.section-label {
    display: block;

    margin-bottom: 14px;

    color: var(--gray);

    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.section-heading h2 {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.section-heading p {
    max-width: 620px;
    margin-top: 25px;

    color: var(--gray-light);

    font-size: 1rem;
    line-height: 1.8;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 190px;
    height: 54px;

    padding: 0 30px;

    border: 1px solid var(--white);

    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;

    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--white);
    color: var(--black);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    width: 100%;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 5%;

    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0) 100%
    );

    transition:
        background 0.3s ease,
        height 0.3s ease,
        backdrop-filter 0.3s ease;
}


/* HEADER AL HACER SCROLL */

.site-header.scrolled {
    height: 68px;

    background: rgba(5, 5, 5, 0.90);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 42px;
}


.main-nav a {
    position: relative;

    padding: 8px 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 0.7rem;
    font-weight: 500;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    transition: color 0.3s ease;
}


.main-nav a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 0;
    height: 1px;

    background: #ffffff;

    transform: translateX(-50%);

    transition: width 0.3s ease;
}


.main-nav a:hover {
    color: #ffffff;
}


.main-nav a:hover::after {
    width: 100%;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    position: absolute;

    top: 50%;
    right: 25px;

    z-index: 1002;

    display: none;

    width: 32px;
    height: 26px;

    padding: 0;

    transform: translateY(-50%);

    cursor: pointer;
}


.menu-toggle span {
    position: absolute;
    left: 0;

    width: 100%;
    height: 2px;

    background: #ffffff;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        top 0.3s ease;
}


.menu-toggle span:nth-child(1) {
    top: 2px;
}


.menu-toggle span:nth-child(2) {
    top: 12px;
}


.menu-toggle span:nth-child(3) {
    top: 22px;
}


/* X CUANDO ESTÁ ABIERTO */

.menu-toggle.active span:nth-child(1) {
    top: 12px;

    transform: rotate(45deg);
}


.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}


.menu-toggle.active span:nth-child(3) {
    top: 12px;

    transform: rotate(-45deg);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .main-nav {
        gap: 28px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 820px) {

    .site-header {
        height: 70px;

        justify-content: flex-end;

        padding: 0 25px;

        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.65),
            transparent
        );
    }


    .site-header.scrolled {
        height: 64px;
    }


    /* MOSTRAR HAMBURGUESA */

    .menu-toggle {
        display: block;
    }


    /* MENÚ PANTALLA COMPLETA */

    .main-nav {
        position: fixed;

        inset: 0;

        z-index: 1001;

        width: 100%;
        height: 100vh;
        height: 100svh;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 26px;

        background: rgba(5, 5, 5, 0.98);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-15px);

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }


    .main-nav.active {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }


    .main-nav a {
        color: #ffffff;

        font-size: 1.05rem;
        font-weight: 500;

        letter-spacing: 0.20em;
    }


    .main-nav a::after {
        display: none;
    }

}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;

    background-image: url("../images/sitio/hero-13m.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.30) 50%,
            rgba(0, 0, 0, 0.55) 100%
        ),
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.85) 0%,
            transparent 45%
        );
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: var(--container);

    padding: 150px 6% 100px;

    text-align: center;
}

.hero-location {
    margin-bottom: 12px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.38em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;

    font-size: clamp(4.5rem, 12vw, 11rem);
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -0.07em;

    text-transform: uppercase;

    text-shadow: 0 10px 50px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    margin-top: 30px;

    font-size: clamp(1.1rem, 2vw, 1.7rem);
    font-weight: 500;
    letter-spacing: 0.45em;
    text-transform: uppercase;
}

.hero-description {
    margin-top: 12px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;

    margin-top: 45px;
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.scroll-down {
    position: absolute;
    z-index: 5;

    bottom: 30px;
    left: 50%;

    width: 30px;
    height: 50px;

    transform: translateX(-50%);
}

.scroll-down span {
    position: absolute;
    top: 0;
    left: 50%;

    width: 1px;
    height: 40px;

    background: rgba(255, 255, 255, 0.65);

    animation: scrollLine 1.8s infinite;
}

@keyframes scrollLine {

    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    45% {
        transform: scaleY(1);
        transform-origin: top;
    }

    55% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }

}


/* =========================================================
   MUSIC SECTION
========================================================= */

.music-section {
    background: var(--black);
}

.releases-grid {
    width: 100%;
    max-width: var(--container);

    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* =========================================================
   BIO
========================================================= */

.bio-section {
    max-width: none;

    display: grid;
    grid-template-columns: 1fr 1fr;

    padding: 0;

    background: var(--dark);
}

.bio-image {
    min-height: 720px;

    background-image: url("../images/sitio/artist-13m.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bio-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    max-width: 650px;

    padding: 100px 10%;
}

.bio-content h2 {
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.bio-content h3 {
    margin-top: 15px;

    color: var(--gray-light);

    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.bio-content p {
    margin-top: 35px;

    color: var(--gray-light);

    font-size: 1rem;
    line-height: 2;
}

.text-link {
    position: relative;

    width: fit-content;

    margin-top: 35px;
    padding-bottom: 6px;

    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;

    border-bottom: 1px solid var(--white);
}


/* =========================================================
   SETS
========================================================= */

.sets-section {
    background: var(--black-soft);
}

.sets-grid {
    width: 100%;
    max-width: var(--container);

    margin: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


/* =========================================================
   RADIO
========================================================= */

.radio-section {
    position: relative;

    min-height: 680px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 100px 6%;

    background-image: url("../images/sitio/radio-13m.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    text-align: center;
}

.radio-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.72);
}

.radio-content {
    position: relative;
    z-index: 2;

    max-width: 800px;
}

.radio-content h2 {
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.radio-content p {
    max-width: 620px;

    margin: 30px auto 40px;

    color: var(--gray-light);

    line-height: 1.9;
}


/* =========================================================
   EVENTS
========================================================= */

.events-section {
    background: var(--black);
}

.events-list {
    width: 100%;
    max-width: var(--container);

    margin: auto;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    min-height: 650px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--white);
    color: var(--black);

    text-align: center;
}

.contact-content {
    width: 100%;
    max-width: 900px;
}

.contact-section .section-label {
    color: var(--gray-dark);
}

.contact-content h2 {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.contact-content > p {
    margin-top: 30px;

    color: #555;
}

.contact-email {
    display: inline-block;

    margin-top: 35px;

    font-size: clamp(1rem, 2.5vw, 1.6rem);
    font-weight: 600;

    border-bottom: 1px solid var(--black);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 30px;

    margin-top: 55px;
}

.social-links a {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;

    transition: opacity var(--transition);
}

.social-links a:hover {
    opacity: 0.5;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 70px 6% 40px;

    background: var(--black);

    text-align: center;
}

.footer-logo {
    width: auto;
    height: 55px;

    margin-bottom: 25px;
}

.site-footer p {
    color: var(--gray);

    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.copyright {
    margin-top: 15px;

    opacity: 0.65;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    :root {
        --header-height: 80px;
    }

    .section {
        padding: 100px 7%;
    }

    .main-nav {
        gap: 20px;
    }

    .main-nav a {
        font-size: 0.65rem;
    }

    .releases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bio-image {
        min-height: 650px;
    }

}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 820px) {

    .site-header {
        height: 75px;
        padding: 0 25px;
    }


    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        inset: 0;

        z-index: 1001;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 24px;

        width: 100%;
        height: 100vh;

        background: rgba(5, 5, 5, 0.98);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-20px);

        transition:
            opacity var(--transition),
            visibility var(--transition),
            transform var(--transition);
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .main-nav a {
        color: var(--white);

        font-size: 1.2rem;
        font-weight: 500;
        letter-spacing: 0.18em;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .section {
        padding: 85px 25px;
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .section-heading h2 {
        font-size: 3rem;
    }


    /* HERO */

    .hero {
        min-height: 100svh;
    }

    .hero-background {
        background-position: center;
    }

    .hero-content {
        padding: 120px 25px 90px;
    }

    .hero h1 {
        font-size: clamp(6rem, 35vw, 9rem);
    }

    .hero-location {
        font-size: 0.62rem;
        letter-spacing: 0.28em;
    }

    .hero-subtitle {
        margin-top: 22px;

        font-size: 0.9rem;
        letter-spacing: 0.32em;
    }

    .hero-description {
        font-size: 0.65rem;
        line-height: 1.8;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;

        margin-top: 35px;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }


    /* MUSIC */

    .releases-grid {
        grid-template-columns: 1fr;
    }


    /* BIO */

    .bio-section {
        grid-template-columns: 1fr;
    }

    .bio-image {
        min-height: 500px;
    }

    .bio-content {
        padding: 75px 25px;
    }

    .bio-content h2 {
        font-size: 5rem;
    }


    /* SETS */

    .sets-grid {
        grid-template-columns: 1fr;
    }


    /* RADIO */

    .radio-section {
        min-height: 600px;

        padding: 80px 25px;
    }

    .radio-content h2 {
        font-size: clamp(3.5rem, 18vw, 6rem);
    }


    /* CONTACT */

    .contact-section {
        min-height: 580px;
    }

    .contact-content h2 {
        font-size: clamp(3.5rem, 18vw, 6rem);
    }

    .contact-email {
        font-size: 0.95rem;
    }

    .social-links {
        gap: 18px 25px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .hero h1 {
        font-size: 6rem;
    }

    .hero-subtitle {
        letter-spacing: 0.25em;
    }

    .bio-image {
        min-height: 420px;
    }

    .bio-content h2 {
        font-size: 4.2rem;
    }

    .footer-logo {
        height: 45px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    width: 100%;
    min-height: 100vh;
    min-height: 100svh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #000;
}


/* =========================================================
   HERO BACKGROUND
========================================================= */

.hero-background {
    position: absolute;
    inset: 0;

    z-index: 0;

    background-image: url("../images/sitio/13musicdjp.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    /*
       Pequeño aumento para evitar bordes
       y darle más presencia a la fotografía.
    */
    transform: scale(1.03);
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    /*
       Oscurecemos la fotografía sin modificar
       la opacidad del contenido.
    */
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.40) 0%,
            rgba(0, 0, 0, 0.25) 35%,
            rgba(0, 0, 0, 0.45) 70%,
            rgba(0, 0, 0, 0.90) 100%
        ),
        rgba(0, 0, 0, 0.20);
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    padding: 150px 6% 100px;

    text-align: center;
}


/* UBICACIÓN */

.hero-location {
    margin: 0 0 18px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 0.7rem;
    font-weight: 500;

    letter-spacing: 0.4em;

    text-transform: uppercase;
}


/* NOMBRE ARTÍSTICO */

.hero h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(4.5rem, 12vw, 11rem);
    font-weight: 800;

    line-height: 0.85;

    letter-spacing: -0.065em;

    text-transform: uppercase;

    text-shadow:
        0 5px 20px rgba(0, 0, 0, 0.35),
        0 15px 60px rgba(0, 0, 0, 0.45);
}


/* DJ · PRODUCER */

.hero-subtitle {
    margin: 32px 0 0;

    color: #ffffff;

    font-size: clamp(0.95rem, 1.6vw, 1.35rem);
    font-weight: 500;

    letter-spacing: 0.48em;

    text-transform: uppercase;
}


/* GÉNEROS */

.hero-description {
    margin: 14px 0 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.72rem;
    font-weight: 400;

    letter-spacing: 0.22em;

    text-transform: uppercase;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    margin-top: 45px;
}


.hero-actions .btn {
    min-width: 195px;

    height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 28px;

    border: 1px solid rgba(255, 255, 255, 0.9);

    font-size: 0.7rem;
    font-weight: 600;

    letter-spacing: 0.14em;

    text-transform: uppercase;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.hero-actions .btn:hover {
    transform: translateY(-3px);
}


/* BOTÓN PRINCIPAL */

.hero-actions .btn-primary {
    background: #ffffff;
    color: #050505;
}


.hero-actions .btn-primary:hover {
    background: transparent;
    color: #ffffff;
}


/* BOTÓN SECUNDARIO */

.hero-actions .btn-outline {
    background: rgba(0, 0, 0, 0.15);

    color: #ffffff;

    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}


.hero-actions .btn-outline:hover {
    background: #ffffff;
    color: #050505;
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.scroll-down {
    position: absolute;

    z-index: 3;

    left: 50%;
    bottom: 28px;

    width: 30px;
    height: 50px;

    transform: translateX(-50%);
}


.scroll-down span {
    position: absolute;

    top: 0;
    left: 50%;

    width: 1px;
    height: 40px;

    background: rgba(255, 255, 255, 0.7);

    animation: heroScrollLine 1.8s infinite;
}


@keyframes heroScrollLine {

    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    45% {
        transform: scaleY(1);
        transform-origin: top;
    }

    55% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }

}


/* =========================================================
   HERO - TABLET
========================================================= */

@media (max-width: 1024px) {

    .hero-background {
        background-position: center center;
    }

    .hero-content {
        padding-left: 40px;
        padding-right: 40px;
    }

}


/* =========================================================
   HERO - MOBILE
========================================================= */

@media (max-width: 768px) {

    .hero {
        min-height: 100svh;
    }


    .hero-background {
        /*
           Podemos cambiar este valor dependiendo
           de dónde esté ubicada la persona en la foto.
        */
        background-position: center center;

        transform: scale(1.01);
    }


    .hero-overlay {
        /*
           Un poco más oscuro en móvil porque la
           fotografía ocupa proporcionalmente más espacio.
        */
        background:
            linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.48) 0%,
                rgba(0, 0, 0, 0.30) 35%,
                rgba(0, 0, 0, 0.50) 70%,
                rgba(0, 0, 0, 0.92) 100%
            ),
            rgba(0, 0, 0, 0.15);
    }


    .hero-content {
        padding: 120px 22px 100px;
    }


    .hero-location {
        margin-bottom: 16px;

        font-size: 0.6rem;

        letter-spacing: 0.3em;
    }


    .hero h1 {
        font-size: clamp(3.8rem, 19vw, 6.5rem);

        line-height: 0.9;

        letter-spacing: -0.055em;
    }


    .hero-subtitle {
        margin-top: 25px;

        font-size: 0.85rem;

        letter-spacing: 0.32em;
    }


    .hero-description {
        max-width: 320px;

        margin: 13px auto 0;

        font-size: 0.62rem;

        line-height: 1.8;

        letter-spacing: 0.16em;
    }


    .hero-actions {
        flex-direction: column;

        gap: 12px;

        margin-top: 35px;
    }


    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }


    .scroll-down {
        bottom: 18px;
    }

}


/* =========================================================
   HERO - SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .hero-content {
        padding-left: 18px;
        padding-right: 18px;
    }


    .hero h1 {
        font-size: clamp(3.5rem, 18vw, 5rem);
    }


    .hero-subtitle {
        font-size: 0.75rem;

        letter-spacing: 0.27em;
    }

}