
/* =========================================================
   MONO — PREMIUM MINIMAL FASHION
========================================================= */

:root {
    --black: #111111;
    --dark: #181818;
    --white: #ffffff;
    --cream: #f7f5f1;
    --soft: #eeeae3;
    --gray: #777777;
    --border: #dedbd5;

    --container: 1380px;
    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
}

img {
    width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}


/* =========================================================
   GLOBAL
========================================================= */

.container {
    width: min(92%, var(--container));
    margin: auto;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gray);
}

.eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
}

.text-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid var(--black);
    padding-bottom: 4px;
    transition: .3s ease;
}

.text-link:hover {
    opacity: .55;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    height: 82px;
    display: flex;
    align-items: center;
    background: var(--white);
    border-bottom: 1px solid #eeeeee;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 27px;
    font-weight: 600;
    letter-spacing: -1.5px;
}

.logo span {
    color: #999999;
}

.menu {
    display: flex;
    gap: 38px;
    margin-left: 70px;
}

.menu a {
    font-size: 13px;
    position: relative;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--black);
    transition: .3s ease;
}

.menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-actions a {
    font-size: 13px;
}

.nav-actions span {
    color: var(--gray);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    min-height: 720px;
    background: var(--cream);
    overflow: hidden;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 58%;
    height: 100%;
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(247,245,241,.95),
        rgba(247,245,241,0) 45%
    );
}

.hero-image img {
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(92%, var(--container));
    margin: auto;
    padding-top: 190px;
}

.hero h1 {
    max-width: 650px;
    margin: 22px 0;
    font-size: clamp(60px, 7vw, 105px);
    line-height: .94;
    letter-spacing: -5px;
    font-weight: 500;
}

.hero h1 em,
.editorial h2 em,
.intro h2 span,
.newsletter h2 em {
    font-family: var(--serif);
    font-weight: 500;
}

.hero-text {
    max-width: 430px;
    color: #626262;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 205px;
    padding: 16px 20px;
    font-size: 12px;
    letter-spacing: .4px;
    transition: .3s ease;
}

.btn span {
    font-size: 18px;
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: #333333;
}


/* =========================================================
   INTRO
========================================================= */

.intro {
    padding: 145px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 28% 72%;
}

.intro-content {
    max-width: 780px;
}

.intro h2 {
    max-width: 850px;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -3px;
    margin-bottom: 35px;
}

.intro-content > p {
    max-width: 570px;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 30px;
}


/* =========================================================
   COLLECTION
========================================================= */

.collection {
    background: #faf9f7;
    padding: 110px 0 130px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 46px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-top: 8px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-image {
    position: relative;
    overflow: hidden;
    background: #ece9e4;
}

.product-image img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform .7s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-tag {
    position: absolute;
    z-index: 2;
    left: 15px;
    top: 15px;
    background: var(--white);
    padding: 7px 10px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
}

.quick-add {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: none;
    background: var(--white);
    padding: 14px;
    font-size: 11px;
    letter-spacing: .5px;
    opacity: 0;
    transform: translateY(10px);
    transition: .3s ease;
    cursor: pointer;
}

.product-card:hover .quick-add {
    opacity: 1;
    transform: translateY(0);
}

.product-info {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 17px 2px;
}

.product-info h3 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px;
}

.product-info p {
    font-size: 11px;
    color: var(--gray);
}

.product-info strong {
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}


/* =========================================================
   EDITORIAL
========================================================= */

.editorial {
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.editorial-image {
    position: absolute;
    inset: 0;
}

.editorial-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.34);
}

.editorial-image img {
    height: 100%;
    object-fit: cover;
}

.editorial-content {
    position: relative;
    z-index: 2;
    width: min(92%, var(--container));
    margin: auto;
    color: var(--white);
}

.editorial-content h2 {
    max-width: 650px;
    font-size: clamp(50px, 6vw, 86px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -4px;
    margin: 20px 0 30px;
}

.editorial-content p:not(.eyebrow) {
    max-width: 460px;
    color: rgba(255,255,255,.82);
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 35px;
}

.btn-light {
    background: var(--white);
    color: var(--black);
}

.btn-light:hover {
    background: #eeeeee;
}


/* =========================================================
   VALUES
========================================================= */

.values {
    padding: 120px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
}

.value {
    padding: 35px 40px 20px 0;
    border-right: 1px solid var(--border);
}

.value:not(:first-child) {
    padding-left: 40px;
}

.value:last-child {
    border-right: 0;
}

.value span {
    display: block;
    font-size: 10px;
    color: var(--gray);
    margin-bottom: 45px;
}

.value h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
}

.value p {
    max-width: 280px;
    font-size: 13px;
    color: var(--gray);
    line-height: 1.8;
}


/* =========================================================
   JOURNAL
========================================================= */

.journal {
    background: var(--cream);
    padding: 110px 0 130px;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.journal-card img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.journal-card > div {
    padding-top: 22px;
}

.journal-card span {
    font-size: 10px;
    color: var(--gray);
    letter-spacing: 1.5px;
}

.journal-card h3 {
    font-size: 24px;
    font-weight: 400;
    margin: 9px 0 16px;
}

.journal-card a {
    font-size: 12px;
    border-bottom: 1px solid var(--black);
    padding-bottom: 3px;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter {
    padding: 135px 0;
    text-align: center;
}

.newsletter-inner {
    max-width: 750px;
}

.newsletter h2 {
    font-size: clamp(42px, 5vw, 65px);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -3px;
    margin: 18px 0;
}

.newsletter p:not(.section-label) {
    max-width: 500px;
    margin: auto;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.8;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 35px auto 0;
    border-bottom: 1px solid var(--black);
}

.newsletter-form input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 15px 0;
    background: transparent;
    font-size: 13px;
}

.newsletter-form button {
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 50px;
    padding-bottom: 80px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 230px;
    color: #999999;
    font-size: 13px;
    line-height: 1.7;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-column h4 {
    font-size: 11px;
    font-weight: 500;
    color: #888888;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.footer-column a {
    font-size: 12px;
    color: #dddddd;
    transition: .3s ease;
}

.footer-column a:hover {
    color: #888888;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    color: #777777;
    font-size: 11px;
}

.footer-bottom div {
    display: flex;
    gap: 25px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .menu {
        gap: 20px;
        margin-left: 20px;
    }

    .hero {
        min-height: 650px;
    }

    .hero-image {
        width: 55%;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 18px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value,
    .value:not(:first-child) {
        border-right: 0;
        border-bottom: 1px solid var(--border);
        padding: 30px 0;
    }

    .value span {
        margin-bottom: 25px;
    }

    .footer-top {
        grid-template-columns: 1.5fr repeat(3, 1fr);
    }
}


@media (max-width: 700px) {

    .header {
        height: 70px;
    }

    .menu {
        display: none;
    }

    .nav-actions {
        gap: 15px;
    }

    .hero {
        min-height: 680px;
    }

    .hero-image {
        width: 100%;
        height: 60%;
        top: auto;
        bottom: 0;
    }

    .hero-image::after {
        background: linear-gradient(
            180deg,
            rgba(247,245,241,1),
            rgba(247,245,241,0) 55%
        );
    }

    .hero-content {
        padding-top: 90px;
    }

    .hero h1 {
        font-size: 58px;
        letter-spacing: -3px;
    }

    .hero-text {
        max-width: 330px;
        font-size: 13px;
    }

    .intro,
    .values,
    .newsletter {
        padding: 85px 0;
    }

    .intro h2 {
        font-size: 43px;
    }

    .collection,
    .journal {
        padding: 80px 0 90px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .section-heading h2 {
        font-size: 38px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 12px;
    }

    .product-info {
        display: block;
    }

    .product-info strong {
        display: block;
        margin-top: 8px;
    }

    .quick-add {
        opacity: 1;
        transform: none;
        padding: 11px;
        bottom: 10px;
        left: 10px;
        right: 10px;
    }

    .editorial {
        min-height: 620px;
    }

    .editorial-content h2 {
        font-size: 52px;
        letter-spacing: -3px;
    }

    .journal-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .newsletter h2 {
        font-size: 45px;
    }

    .newsletter-form {
        display: block;
        border: 0;
    }

    .newsletter-form input {
        width: 100%;
        border-bottom: 1px solid var(--black);
        margin-bottom: 12px;
    }

    .newsletter-form button {
        width: 100%;
        background: var(--black);
        color: var(--white);
        padding: 14px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 45px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

}


@media (max-width: 430px) {

    .container,
    .hero-content {
        width: 90%;
    }

    .hero h1 {
        font-size: 49px;
    }

    .product-grid {
        gap: 25px 10px;
    }

    .product-info h3 {
        font-size: 12px;
    }

    .product-info p,
    .product-info strong {
        font-size: 10px;
    }

    .editorial-content h2 {
        font-size: 44px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

}
