/*==================================================
RESET
==================================================*/

*,
*::before,
*::after {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;

}

body {

    min-height: 100vh;

    background: #faf9f6;

    color: #111;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    line-height: 1.5;

    text-rendering: optimizeLegibility;

    -webkit-font-smoothing: antialiased;

    overflow-x: hidden;

}

img {

    display: block;

    max-width: 100%;

    height: auto;

}

picture {

    display: block;

}

button {

    border: none;

    background: none;

    cursor: pointer;

    font: inherit;

}

input,
textarea,
select {

    font: inherit;

}

a {

    text-decoration: none;

    color: inherit;

}

ul {

    list-style: none;

}

/*==================================================
ROOT
==================================================*/

:root {

    --bg: #faf9f6;

    --white: #ffffff;

    --black: #111111;

    --grey: #666666;

    --line: #ececec;

    --container: 1720px;

    --radius: 0px;

    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 40px;
    --space-5: 64px;
    --space-6: 120px;
    --space-7: 220px;

    --transition: .45s cubic-bezier(.22, .61, .36, 1);

    --font-serif: "Fraunces", serif;

    --font-body: "Poppins", sans-serif;

    --font-mono: "Courier Prime", monospace;

    --font-logo: "DM Serif Display", serif;

}

/*==================================================
BASE
==================================================*/

body {

    background: var(--bg);

}

main {

    width: min(94%, var(--container));

    margin: auto;

}

section {

    position: relative;

}

.container {

    width: 100%;

    margin: auto;

}

.flow>*+* {

    margin-top: 2rem;

}

.hidden {

    display: none;

}

.sr-only {

    position: absolute;

    width: 1px;

    height: 1px;

    padding: 0;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;

}

/*==================================================
TYPE
==================================================*/

h1 {

    font-family: var(--font-serif);

    font-size: clamp(4rem, 8vw, 6rem);

    line-height: .9;

    font-weight: 400;

}

h2 {

    font-family: var(--font-serif);

    font-size: clamp(2.5rem, 5vw, 5rem);

    line-height: .95;

    font-weight: 400;

}

h3 {

    font-family: var(--font-serif);

    font-size: clamp(1.5rem, 2vw, 2rem);

    font-weight: 400;

}

p {

    font-size: clamp(1.2rem, 1rem, 1rem);

    line-height: 1.9;

    color: var(--grey);

}

.small {

    font-family: var(--font-mono);

    font-size: clamp(0.8rem, 0.8rem, 0.8rem);

    letter-spacing: .18em;

    text-transform: uppercase;

}

/*==================================================
EDITORIAL GRID
==================================================*/

.grid {

    display: grid;

    grid-template-columns: repeat(24, minmax(0, 1fr));

    gap: clamp(24px, 2vw, 48px);

}

.grid-xs {

    display: grid;
    grid-template-columns: repeat(20, minmax(0, 1fr));
    gap: clamp(24px, 2vw, 48px);
    justify-content: center !important;

}

@media (max-width: 768px) {

    .grid-xs {

        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: clamp(24px, 2vw, 48px);
        justify-content: center !important;

    }

}


.span-24 {

    grid-column: 1/-1;

}

.span-18 {

    grid-column: span 18;

}

.span-16 {

    grid-column: span 16;

}

.span-14 {

    grid-column: span 14;

}

.span-12 {

    grid-column: span 12;

}

.span-10 {

    grid-column: span 10;

}

.span-8 {

    grid-column: span 8;

}

.span-6 {

    grid-column: span 6;

}

.span-4 {

    grid-column: span 4;

}

/*==================================================
SPACING
==================================================*/

.mt-xs {

    margin-top: var(--space-2);

}

.mt-s {

    margin-top: var(--space-3);

}

.mt-m {

    margin-top: var(--space-4);

}

.mt-l {

    margin-top: var(--space-5);

}

.mt-xl {

    margin-top: var(--space-6);

}

.mt-xxl {

    margin-top: var(--space-7);

}

/* ==========================================
LANGUAGES 
========================================== */

.language-switch{

display:flex;
align-items:center;
gap:8px;

font-family:var(--font-sans);
font-size:.8rem;
letter-spacing:.15em;
text-transform:uppercase;

}

.mobile-language-switch {
display:flex;
align-items:center;
gap:8px;
font-family:var(--font-mono);
font-size: 1rem;
letter-spacing:.15em;
text-transform:uppercase;
}

@media (max-width: 768px){

    .language-switch{
        display: none;
    }

 .mobile-language-switch {
display:flex;
align-items:center;
gap:8px;
font-family:var(--font-mono);
font-size: 2rem;
letter-spacing:.15em;
text-transform:uppercase;
}

}


.language-switch span{

opacity:.35;

}

.lang{

background:none;
border:none;
padding:0;

font:inherit;

color:#111;
opacity:.35;

cursor:pointer;

transition:opacity .25s ease;

}

.lang:hover{

opacity:1;

}

.lang.active{

opacity:1;

}

/* ==========================================
BACK TO TOP
========================================== */

#backToTop{

position:fixed;

right:30px;

bottom:30px;

width:56px;

height:56px;

border:1px solid #111;

background: rgba(255, 255, 255, 0.5);

backdrop-filter: blur(20px);
    
color:#111;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size: clamp(0.6rem, 0.8rem, 0.8rem);
letter-spacing:.18em;
font-family:var(--font-mono);
text-transform:uppercase;


cursor:pointer;

opacity:0;

visibility:hidden;

transform:translateY(20px);

transition:
opacity .35s ease,
transform .35s ease,
background .3s ease;

z-index:999;

}

#backToTop.show{

opacity:1;

visibility:visible;

transform:translateY(0);

}

#backToTop:hover{

background:#111;

color:#fff;

}


/*==================================================
HEADER
==================================================*/

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;


    padding: 20px 40px;
    display: flex;
    justify-content: space-between;

    grid-template-columns:

        1fr auto 1fr;

    align-items: center;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.6);

    backdrop-filter: blur(20px);

    transition:
        transform .5s cubic-bezier(.22, .61, .36, 1),
        background .35s ease;

}

.logo {

    justify-self: start;

    font-family: var(--font-logo);

    font-size: 3rem;

    font-weight: 400;

}


.navigation {

    justify-self: center;

    display: flex;

    gap: 52px;

}

.navigation a {

    position: relative;

    font-family: var(--font-mono);

    font-size: .78rem;

    letter-spacing: .16em;

}

.navigation a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 0;

    height: 1px;

    background: #111;

    transition: var(--transition);

}

.navigation a:hover::after {

    width: 100%;

}

.menu {

    justify-self: end !important;

    color: #111 !important;

    top: 2rem   !important;
    right: 2rem !important;

    width: 48px !important;
    height: 48px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: none !important;
    background: transparent !important;

    font-size: 2rem !important;
    line-height: 1 !important;


    cursor: pointer !important;

    transition: .3s ease !important;

}

.menu:hover {
    transform: rotate(90deg) !important;
    color: #777 !important;
    cursor: pointer !important;
}


.menu-overlay {

    position: fixed;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;


    background: rgba(255, 255, 255, 0.6);

    backdrop-filter: blur(20px);

    visibility: hidden;

    transition: .45s;

    z-index: 9999;

}

.menu-overlay.active {

    opacity: 1;
    visibility: visible;

}

body.menu-open {

    overflow: hidden;

}

/* CONTENIDO */

.menu-content {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 2rem;

    width: 100%;
    height: 100%;

}

.menu-content a {

    text-decoration: none;

}

.menu-content a:hover {


    color: #777;

    cursor: pointer;

    transition: .3s ease;

}

/* BOTÓN CERRAR */

.menu-close {

    position: absolute;
    top: 2rem;
    right: 2rem;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    background: transparent;

    font-size: 2rem;
    line-height: 1;

    color: #111;

    cursor: pointer;

    transition: .3s ease;

}

.menu-close:hover {

    transform: rotate(90deg);

    color: #777;

    cursor: pointer;

}

/*==================================================
HERO
==================================================*/

.hero {

    display: grid;

    grid-template-columns:

        repeat(24, 1fr);

    padding-top: 140px;

    padding-bottom: 100px;

}

.hero-copy {

    grid-column: 2/10;

    max-width: 560px;

    z-index: 3;

}

.hero-copy h1 {

    margin: 30px 0;

}

.hero-copy p {

    max-width: 420px;
    padding-top: 20px;
    padding-bottom: 20px;

}

.hero-image {

    grid-column: 13/25;

    overflow: hidden;

}

.hero-image img {

    aspect-ratio: 4/5;

    object-fit: cover;

    transition: 1.2s cubic-bezier(.22, .61, .36, 1);

    max-width: 60%;

    height: auto;

}

.hero-image:hover img {

    transform: scale(1.02);

}

/*==================================================
BUTTON
==================================================*/

.button {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin-top: 48px;

    font-family: var(--font-mono);

    font-size: .8rem;

    letter-spacing: .18em;

    position: relative;

}

.button::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 0;

    height: 1px;

    background: #111;

    transition: var(--transition);

}

.button:hover::after {

    width: 100%;

}


/*==================================================
EDITORIAL LOOK
==================================================*/

.look {

    display: flex;

    flex-direction: column;

    gap: 22px;

    margin-bottom: 100px;

}

.look figure {

    overflow: hidden;

}

.look img {

    width: 100%;

    aspect-ratio: 4/5;

    object-fit: cover;

    transition:

        transform 1.4s cubic-bezier(.22, .61, .36, 1),

        filter .45s;

}

.look:hover img {

    transform: scale(1.015);

    filter: contrast(102%) brightness(101%);

}

.look-info {

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.look-title {

    font-family: var(--font-serif);
    font-size: clamp(2rem, 2rem, 2rem);
    max-width: 50%;

}

.look-title-xs {

    font-family: var(--font-mono);

    font-size: 1rem;

}

.look-link {

    font-family: var(--font-mono);

    font-size: clamp(1.2rem, 1rem, 0.8rem);

    letter-spacing: .18em;

    position: relative;

    padding: 10px 20px;

    border: 1px solid #111;

}

.look-link::after {

    content: "";

    position: absolute;

    bottom: -6px;

    left: 0;

    width: 0;

    height: 1px;

    background: #111;

    transition: var(--transition);

}

.look-link:hover::after {

    width: 100%;

}

/*==================================================
IMAGE SIZES
==================================================*/

.look-xs {

    grid-column: span 4;

}

.look-sm {

    grid-column: span 6;

}

.look-md {

    grid-column: span 8;

}

.look-lg {

    grid-column: span 12;

}

.look-xl {

    grid-column: span 16;

}

.look-full {

    grid-column: 1/-1;

}

.look-offset-left {

    transform: translateX(-3vw);

}

.look-offset-right {

    transform: translateX(3vw);

}

.look-tall img {

    aspect-ratio: 4/6;

}

.look-wide img {

    aspect-ratio: 16/10;

}

.look-square img {

    aspect-ratio: 1;

}

/*==================================================
EDITORIAL QUOTES
==================================================*/

.editorial-quote {

    grid-column: 3/22;

    padding-top: 100px;

    padding-bottom: 100px;

}

.editorial-quote p {

    font-family: var(--font-serif);

    font-size: clamp(3rem, 8vw, 6rem);

    line-height: .9;

    font-weight: 300;

    color: #111;

    max-width: 1200px;

}

.editorial-quote.small {

    grid-column: 8/18;

}

.editorial-quote.center {

    text-align: center;

    margin-inline: auto;

}

.editorial-quote.right {

    grid-column: 12/24;

    text-align: right;

}

.editorial-quote span {

    display: block;

    margin-top: 30px;

    font-family: var(--font-mono);

    font-size: .75rem;

    letter-spacing: .18em;

    text-transform: uppercase;

    color: #777;

    width: 70%;


}

/*==================================================
EDITORIAL TEXT BLOCK
==================================================*/

.editorial {

    display: grid;

    grid-template-columns: repeat(24, 1fr);

    gap: 48px;

    margin: 100px 0;

}

.editorial-media {

    grid-column: 1/13;

}

.editorial-media img {

    width: 100%;

    aspect-ratio: 4/5;

    object-fit: cover;

}

.editorial-content {

    grid-column: 1/16;

    align-self: center;

}

.editorial-content h2 {

    margin-bottom: 36px;

}

.editorial-content p {

    margin-bottom: 26px;

    max-width: 520px;

}

/*==================================================
EDITORIAL BANNER
==================================================*/

.banner {

    margin: 240px 0;

}

.banner img {

    width: 100%;

    aspect-ratio: 16/8;

    object-fit: cover;

}

/*==================================================
MANIFESTO
==================================================*/

.manifesto {

    display: grid;

    grid-template-columns: repeat(24, 1fr);

    margin: 260px 0;

}

.manifesto-title {

    grid-column: 2/8;

}

.manifesto-title span {

    font-family: var(--font-mono);

    font-size: .8rem;

    letter-spacing: .18em;

}

.manifesto-copy {

    grid-column: 10/22;

}

.manifesto-copy h2 {

    margin-bottom: 48px;

}

.manifesto-copy p {

    margin-bottom: 30px;

    max-width: 720px;

}

/*==================================================
NEWSLETTER
==================================================*/

.newsletter {

    padding: 100px 0;

    text-align: center;


    margin: auto;

    border-top: 1px solid var(--line);


}

.newsletter h2 {

    margin: 25px 0;

}

.newsletter p {

    margin: auto;

    max-width: 520px;

    font-size: 1rem;

}

.newsletter form {

    margin-top: 70px;

    display: flex;

    justify-content: center;

    gap: 28px;

}

.newsletter input {

    width: 480px;

    padding: 22px 0;

    border: none;

    border-bottom: 1px solid var(--line);

    background: transparent;

    font-size: 1rem;

    outline: none;

}

.newsletter input:focus {

    border-color: #111;

}

.newsletter button {

    font-family: var(--font-mono);

    letter-spacing: .16em;

    position: relative;

}

.newsletter button::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 0;

    height: 1px;

    background: #111;

    transition: var(--transition);

}

.newsletter button:hover::after {

    width: 100%;

}


#newsletter-message{

    margin-top:1.5rem;

    font-size:.75rem;

    letter-spacing:.08em;

    text-transform:uppercase;

    opacity:.8;

    min-height:20px;

    transition:.3s;

}

#newsletter-message.success{

    color:#111;

}

#newsletter-message.error{

    color:#a80000;

}


/*==================================================
CONTACT FORM
==================================================*/
#contact form{

    margin-top: 70px;
    display: flex;
    gap: 28px;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;

}

@media (max-width: 768px) {
    #contact form {
        width: 100%;
        padding: 40px 50px 100px 40px;
    }

        #contact input, #contact button {
        width: 100%;
    }
}

#contact input,
#contact textarea{

    max-width: 480px;
    padding: 22px 0;
    border: none;
    border-bottom: 1px solid var(--line);
    background: transparent;
    font-size: 1rem;
    outline: none;


}

#contact textarea{

    min-height:140px;

}

#contact button{

    align-self:flex-start;

}

#contact-message{

    margin-top:1.5rem;

    min-height:20px;

    font-size:.75rem;

    text-transform:uppercase;

    letter-spacing:.08em;

    opacity:.8;

}

#contact-message.success{

    color:#111;

}

#contact-message.error{

    color:#a80000;

}

/*==================================================
FOOTER
==================================================*/

.footer {

    padding: 140px 0 80px;

    border-top: 1px solid var(--line);

    display: grid;

    grid-template-columns: repeat(24, 1fr);

    gap: 40px;

}

.footer-logo {

    grid-column: 1/10;

}

.footer-logo p {

    font-family: var(--font-mono);

    letter-spacing: .2em;

    font-size: .78rem;

    padding-top: 10px;

}

.footer-logo h2 {

    justify-self: start;

    font-family: var(--font-logo);

    font-size: 2rem;

    font-weight: 400;

}

.footer-nav {

    grid-column: 16/25;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px 60px;

}

.footer-nav a {

    position: relative;

    width: max-content;

    font-size: .95rem;

}

.footer-nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -5px;

    width: 0;

    height: 1px;

    background: #111;

    transition: var(--transition);

}

.footer-nav a:hover::after {

    width: 100%;

}

/*==================================================
CURSOR
==================================================*/

.cursor {

    position: fixed;

    left: 0;

    top: 0;

    width: 84px;

    height: 84px;

    border-radius: 999px;

    background: #111;

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-family: var(--font-mono);

    font-size: .72rem;

    letter-spacing: .18em;

    pointer-events: none;

    opacity: 0;

    transform: translate(-50%, -50%) scale(.7);

    transition:

        opacity .35s,

        transform .35s;

    z-index: 9999;

}

.cursor.active {

    opacity: 1;

    transform: translate(-50%, -50%) scale(1);

}

/*==================================================
IMAGE REVEAL
==================================================*/

.reveal {

    opacity: 0;

    transform: translateY(80px);

    transition:

        opacity 1s ease,

        transform 1s cubic-bezier(.22, .61, .36, 1);

}

.reveal.show {

    opacity: 1;

    transform: none;

}

/*==================================================
LOADING
==================================================*/

img {

    opacity: 0;

    transition:

        opacity .9s ease,

        transform 1.4s cubic-bezier(.22, .61, .36, 1);

}

img.loaded {

    opacity: 1;

}

/* ==========================================================
   PROGRESS BAR
========================================================== */

.progress {

    position: fixed;

    top: 0;

    left: 0;

    height: 4px;

    width: 0;

    background: #111;

    z-index: 2000;

    transition: width .08s linear;

}


/* ==========================================
   MARQUEE
========================================== */

.ticker {

    width: 100%;

    overflow: hidden;

    white-space: nowrap;

    margin-bottom: 40px;

}

.ticker-track {

    display: flex;

    width: max-content;

    animation: ticker 40s linear infinite;

}

.ticker-track span {

    display: block;

    padding-right: 120px;

    font-family: var(--font-mono);

    font-size: clamp(0.8rem, 1rem, 1rem);

    letter-spacing: .5em;

    text-transform: uppercase;

    color: #666;

    flex-shrink: 0;

}

@keyframes ticker {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-50%);

    }

}

/* ==========================================================
   RESPONSIVE
========================================================== */

/* ==========================================================
TABLET
========================================================== */

@media (max-width:1024px) {

    .grid,
    .hero,
    .editorial,
    .manifesto,
    .footer {

        display: grid;
        grid-template-columns: repeat(12, 1fr);

    }

    .hero-copy,
    .hero-image,
    .editorial-media,
    .editorial-content,
    .manifesto-title,
    .manifesto-copy {

        grid-column: 1/-1;

    }

    .hero {

        gap: 60px;

    }

    .navigation {

        display: none;

    }

}

/* ==========================================================
MOBILE
========================================================== */

@media (max-width:768px) {

    :root {

        --space-xl: 70px;
        --space-2xl: 100px;

    }

    /* ---------- GLOBAL ---------- */

    html,
    body {

        width: 100%;
        max-width: 100%;
        overflow-x: hidden;

    }

    body {

        display: block;

    }

    main {

        display: block;

        width: 100%;
        max-width: 100%;

        margin: 0;

    }

    /* ---------- SECTIONS ---------- */

    section {

        width: 100%;

        padding-right: 40px;
        padding-left: 40px;

    }

    /* ---------- HEADER ---------- */

    .header {

        display: flex;
        justify-content: space-between;
        align-items: center;

        padding: 40px 50px 20px 40px;

        width: 100%;

    }

    .navigation {

        display: none;

    }

    /* ---------- HERO ---------- */

    .hero {

        display: flex;
        flex-direction: column;

        width: 100%;

        gap: 40px;

        padding-top: 160px;

    }

    .hero-copy,
    .hero-image {

        width: 100%;

    }

    .hero h1 {

        font-size: clamp(3rem, 14vw, 5rem);

        line-height: .9;

    }

    .hero p {

        max-width: 100%;

        font-size: 1rem;

    }

    .hero-image img {

        display: block;

        width: 100%;
        height: auto;

        aspect-ratio: 4/5;
        object-fit: cover;

        justify-self: right;

    }

    /* ---------- GRID ---------- */

    .grid,
    .collection,
    .collection-secondary {

        display: flex;
        flex-direction: column;

        width: 100%;

    }

    /* ---------- LOOKS ---------- */

    .look,
    .look-xs,
    .look-sm,
    .look-md,
    .look-lg,
    .look-xl,
    .look-full {

        width: 100%;

        margin: 0 0 80px;

        grid-column: auto !important;

    }

    .look-offset-left,
    .look-offset-right {

        margin-left: 0;
        margin-right: 0;

    }

    .look figure,
    .look img {

        display: block;

        width: 100%;

        height: auto;

    }

    /* ---------- EDITORIAL ---------- */

    .editorial,
    .manifesto {

        display: flex;
        flex-direction: column;

        width: 100%;

        gap: 40px;

        margin: 120px 0;

    }

    .editorial-media,
    .editorial-content,
    .manifesto-title,
    .manifesto-copy {

        width: 100%;

    }

    /* ---------- QUOTES ---------- */

    .editorial-quote {

        width: 100%;
        padding-top: 40px;
        padding-bottom: 40px;
        padding-right: 1px !important;
    padding-left: 1px !important;
    }

    .editorial-quote p {

        font-size: clamp(2.3rem, 12vw, 4rem);

    }

    /* ---------- NEWSLETTER ---------- */

    .newsletter {

        padding: 40px 50px 100px 40px;
        width: 100%;

    }

    .newsletter form {

        display: flex;
        flex-direction: column;

        gap: 20px;

    }

    .newsletter input,
    .newsletter button {

        width: 100%;

    }

    /* ---------- FOOTER ---------- */

    .footer {

        display: flex;
        flex-direction: column;

        gap: 40px;

        padding: 40px 50px 100px 40px;

        width: 100%;

    }

    .footer-nav {

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 18px;

        justify-items: start;

    }


    .footer-logo {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        text-align: center;
    }

    /* ---------- IMAGES ---------- */

    img {

        display: block;

        width: 100%;
        max-width: 100%;
        height: auto;

    }

    /* ---------- CURSOR ---------- */

    .cursor {

        display: none;

    }

}

/* ==========================================================
MOBILE MENU
========================================================== */

@media (max-width:768px) {

    .menu-content {

        display: flex;
        flex-direction: column;

        width: 100%;

        padding: 30px;

        align-items: flex-start;

        gap: 24px;

    }

    .menu-content a {

        font-size: clamp(2.5rem, 10vw, 4rem);

        line-height: 1.1;

    }

    #backToTop{

right:20px;

bottom:20px;

width:48px;

height:48px;

font-size: 0.6rem;


}

}