/* =========================================================
   JOE MALAIKA — LUXURY FASHION HOMEPAGE
   Static approval mockup
========================================================= */

:root {
    --black: #090909;
    --soft-black: #11100f;
    --cream: #f4f0e9;
    --warm-white: #faf9f6;
    --gold: #c9a46a;
    --muted-gold: #a98a59;
    --text: #1b1917;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--warm-white);
    color: var(--text);
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

a {
    text-decoration: none !important;
    color: inherit;
}

.jm-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    color: #fff;
    padding: 22px 0;
}

.jm-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
    color: #fff !important;
}

.logo-mark {
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    line-height: .7;
    color: var(--gold);
}

.logo-name {
    letter-spacing: 7px;
    font-size: 14px;
    margin-top: 13px;
    font-weight: 500;
}

.jm-nav .nav-link {
    color: rgba(255,255,255,.88) !important;
    font-size: 10px;
    letter-spacing: 3px;
    padding: 12px 17px !important;
    transition: .3s ease;
}

.jm-nav .nav-link:hover {
    color: var(--gold) !important;
}

.jm-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.action-icon {
    color: #fff;
    font-size: 23px;
    line-height: 1;
}

.menu-lines {
    font-size: 20px;
}

.jm-hero {
    min-height: 780px;
    height: 88vh;
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #17120e;
}

.jm-hero-image {
    position: absolute;
    inset: 0;
    background:
        url("https://images.unsplash.com/photo-1506629905607-d9e3b5f4d2b7?auto=format&fit=crop&w=2200&q=90")
        center 30% / cover no-repeat;
    transform: scale(1.02);
}

.jm-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5,4,3,.94) 0%, rgba(5,4,3,.65) 35%, rgba(5,4,3,.12) 70%),
        linear-gradient(0deg, rgba(0,0,0,.4), transparent 35%);
}

.hero-copy {
    position: relative;
    z-index: 2;
    padding-top: 90px;
}

.eyebrow {
    display: block;
    font-size: 10px;
    letter-spacing: 5px;
    font-weight: 500;
    margin-bottom: 25px;
    color: rgba(255,255,255,.78);
}

.hero-copy h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(68px, 8vw, 125px);
    line-height: .78;
    letter-spacing: 5px;
    font-weight: 500;
    margin: 0;
    color: #f2d6a6;
}

.hero-copy p {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 23px;
    letter-spacing: 1px;
    margin: 30px 0 38px;
}

.jm-outline-btn,
.jm-dark-btn {
    display: inline-flex;
    align-items: center;
    gap: 35px;
    border: 1px solid rgba(237,214,173,.8);
    padding: 16px 24px;
    color: #fff;
    font-size: 10px;
    letter-spacing: 3px;
    transition: .35s ease;
}

.jm-outline-btn:hover {
    background: #fff;
    color: #111;
}

.hero-scroll {
    position: absolute;
    bottom: 34px;
    left: 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-line {
    height: 42px;
    width: 1px;
    background: rgba(255,255,255,.65);
}

.hero-scroll small {
    font-size: 8px;
    letter-spacing: 4px;
}

.experience-section {
    background: var(--black);
    padding: 16px;
}

.experience-card {
    min-height: 430px;
    position: relative;
    display: block;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.card-collections {
    background-image: url("https://images.unsplash.com/photo-1612722432474-b971cdcea546?auto=format&fit=crop&w=1200&q=85");
}

.card-men {
    background-image: url("https://images.unsplash.com/photo-1617127365659-c47fa864d8bc?auto=format&fit=crop&w=1200&q=85");
}

.card-events {
    background-image: url("https://images.unsplash.com/photo-1501386761578-eac5c94b800a?auto=format&fit=crop&w=1200&q=85");
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.9), rgba(0,0,0,.08) 65%);
    transition: .5s ease;
}

.experience-card:hover .experience-overlay {
    background: linear-gradient(0deg, rgba(0,0,0,.88), rgba(0,0,0,.25));
}

.experience-content {
    position: absolute;
    left: 42px;
    right: 42px;
    bottom: 42px;
    color: #fff;
}

.experience-content > span:first-child {
    font-size: 9px;
    letter-spacing: 4px;
}

.experience-content h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    font-size: 38px;
    line-height: .9;
    letter-spacing: 1px;
    margin: 12px 0 18px;
}

.experience-content p {
    font-size: 12px;
    line-height: 1.8;
    max-width: 290px;
    color: rgba(255,255,255,.8);
}

.experience-link {
    display: inline-block;
    font-size: 9px;
    letter-spacing: 3px;
    padding-top: 8px;
    border-bottom: 1px solid rgba(255,255,255,.7);
    padding-bottom: 7px;
}

.statement-section {
    padding: 130px 0;
    background: var(--cream);
}

.statement-image {
    min-height: 590px;
    background:
        linear-gradient(0deg, rgba(0,0,0,.08), rgba(0,0,0,.08)),
        url("https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=1200&q=90")
        center / cover no-repeat;
}

.eyebrow.dark {
    color: #777065;
}

.statement-section h2,
.section-heading h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 500;
    line-height: .95;
    margin-bottom: 30px;
}

.gold-rule {
    width: 55px;
    height: 1px;
    background: var(--gold);
    margin: 30px 0;
}

.statement-section p {
    color: #686158;
    font-size: 13px;
    line-height: 2;
    max-width: 480px;
    margin-bottom: 35px;
}

.jm-dark-btn {
    color: #111;
    border-color: #222;
}

.jm-dark-btn:hover {
    background: #111;
    color: #fff;
}

.category-section {
    padding: 125px 0 100px;
    background: var(--warm-white);
}

.section-heading {
    margin-bottom: 55px;
}

.section-heading h2 {
    font-size: clamp(45px, 5vw, 68px);
}

.category-card {
    position: relative;
    display: block;
    min-height: 560px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.category-men {
    background-image: url("https://images.unsplash.com/photo-1617137968427-85924c800a22?auto=format&fit=crop&w=1000&q=85");
}

.category-women {
    background-image: url("https://images.unsplash.com/photo-1539109136881-3be0616acf4b?auto=format&fit=crop&w=1000&q=85");
}

.category-bridal {
    background-image: url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1000&q=85");
}

.category-collections {
    background-image: url("https://images.unsplash.com/photo-1551488831-00ddcb6c6bd3?auto=format&fit=crop&w=1000&q=85");
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.82), rgba(0,0,0,.05) 65%);
    transition: .5s ease;
}

.category-card:hover .category-overlay {
    background: linear-gradient(0deg, rgba(0,0,0,.88), rgba(0,0,0,.18));
}

.category-title {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    color: #fff;
}

.category-title small {
    letter-spacing: 3px;
    color: var(--gold);
}

.category-title h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 45px;
    font-weight: 500;
    margin: 8px 0;
}

.category-title span {
    font-size: 9px;
    letter-spacing: 3px;
}

.newsletter-section {
    min-height: 450px;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.newsletter-bg {
    position: absolute;
    inset: 0;
    background:
        url("https://images.unsplash.com/photo-1515372039744-b8f02a3ae446?auto=format&fit=crop&w=2200&q=85")
        center / cover no-repeat;
}

.newsletter-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5,5,5,.78);
}

.newsletter-section .container {
    z-index: 2;
}

.newsletter-section h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 60px;
    font-weight: 500;
    margin-bottom: 15px;
}

.newsletter-section p {
    font-size: 12px;
    color: rgba(255,255,255,.72);
    margin-bottom: 35px;
}

.newsletter-form {
    max-width: 540px;
    margin: auto;
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,.55);
}

.newsletter-form input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    padding: 17px 5px;
    font-size: 11px;
    letter-spacing: 1px;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,.55);
}

.newsletter-form button {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 9px;
    letter-spacing: 3px;
    padding: 0 5px 0 20px;
}

.jm-footer {
    background: #0a0a0a;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo span {
    font-family: "Cormorant Garamond", serif;
    color: var(--gold);
    font-size: 35px;
}

.footer-logo strong {
    letter-spacing: 7px;
    font-size: 13px;
    font-weight: 500;
}

.footer-tagline {
    color: #8e8981;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    margin-top: 15px;
}

.jm-footer h4 {
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 25px;
}

.jm-footer a {
    display: block;
    color: #9f9b95;
    font-size: 11px;
    margin-bottom: 12px;
    transition: .25s ease;
}

.jm-footer a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.social-links a {
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid #242321;
    margin-top: 65px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    color: #65615b;
    font-size: 9px;
    letter-spacing: 1px;
}

.footer-bottom div {
    display: flex;
    gap: 25px;
}

.footer-bottom a {
    display: inline;
    margin: 0;
    color: #65615b;
}

@media (max-width: 991px) {
    .jm-header {
        background: rgba(8,8,8,.65);
        padding: 15px 0;
    }

    .jm-logo {
        min-width: 0;
        align-items: flex-start;
    }

    .logo-name {
        letter-spacing: 4px;
        font-size: 11px;
    }

    .jm-nav {
        margin: 20px 0 !important;
    }

    .jm-actions {
        padding-bottom: 10px;
    }

    .jm-hero {
        min-height: 720px;
    }

    .hero-copy {
        padding-top: 80px;
    }

    .experience-card {
        min-height: 500px;
    }

    .statement-image {
        min-height: 480px;
    }

    .category-card {
        min-height: 520px;
    }
}

@media (max-width: 575px) {
    .jm-hero {
        height: 760px;
    }

    .hero-copy h1 {
        font-size: 70px;
    }

    .hero-copy p {
        font-size: 19px;
    }

    .experience-card {
        min-height: 460px;
    }

    .statement-section,
    .category-section {
        padding: 80px 0;
    }

    .statement-image {
        min-height: 400px;
    }

    .newsletter-section h2 {
        font-size: 45px;
    }

    .footer-bottom {
        display: block;
    }

    .footer-bottom div {
        margin-top: 15px;
    }
}
