/* =========================================
   J2 FINE FURNITURE
   Luxury Placeholder Website
========================================= */


/* =========================================
   VARIABLES
========================================= */

:root {

    --black: #03080d;

    --dark: #071018;

    --dark-2: #0b141c;

    --gold: #d5a62e;

    --gold-light: #f3d36b;

    --cream: #f5f1e8;

    --white: #ffffff;

    --muted: #9da5aa;

    --border: rgba(213,166,46,.35);

    --serif:
        "Cormorant Garamond",
        Georgia,
        serif;

    --sans:
        "Montserrat",
        Arial,
        sans-serif;

}


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

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    background: var(--black);

    color: var(--white);

    font-family: var(--sans);

    line-height: 1.7;

}


a {

    color: inherit;

    text-decoration: none;

}


img {

    max-width: 100%;

    display: block;

}


.container {

    width: min(1160px, 92%);

    margin: auto;

}


/* =========================================
   TOP BAR
========================================= */

.top-bar {

    height: 38px;

    background: #020609;

    border-bottom:
        1px solid
        rgba(255,255,255,.08);

}


.top-bar-content {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .18em;

    color: #858d92;

}


.top-bar a {

    color: var(--gold-light);

}


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

.header {

    position: absolute;

    top: 38px;

    left: 0;

    width: 100%;

    z-index: 20;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.65),
            transparent
        );

}


.navbar {

    height: 90px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =========================================
   LOGO
========================================= */

.logo {

    display: flex;

    align-items: center;

    gap: 12px;

}


.logo img {

    width: 55px;

    height: 55px;

    object-fit: cover;

    border-radius: 50%;

    border: 1px solid var(--gold);

}


.logo-text {

    line-height: 1;

}


.logo-text strong {

    display: block;

    font-family: var(--serif);

    font-size: 27px;

    letter-spacing: .08em;

}


.logo-text strong span {

    color: var(--gold-light);

}


.logo-text small {

    display: block;

    margin-top: 5px;

    font-size: 7px;

    letter-spacing: .4em;

    color: #ddd;

}


/* =========================================
   NAVIGATION
========================================= */

.navigation {

    display: flex;

    align-items: center;

    gap: 30px;

}


.navigation a {

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .18em;

    transition: .3s;

}


.navigation a:hover {

    color: var(--gold-light);

}


.nav-whatsapp {

    border:
        1px solid
        var(--gold);

    padding: 11px 17px;

    color: var(--gold-light);

}


.menu-toggle {

    display: none;

    background: none;

    border: none;

    color: var(--gold-light);

    font-size: 26px;

    cursor: pointer;

}


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

.hero {

    min-height: 760px;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 75% 45%,
            rgba(213,166,46,.18),
            transparent 25%
        ),

        linear-gradient(
            90deg,
            rgba(3,8,13,.98),
            rgba(3,8,13,.65),
            rgba(3,8,13,.2)
        ),

        linear-gradient(
            135deg,
            #182027,
            #03070a 70%
        );

}


/* Decorative golden circle */

.hero::after {

    content: "";

    position: absolute;

    width: 520px;

    height: 520px;

    right: 5%;

    bottom: -80px;

    border:
        1px solid
        rgba(213,166,46,.2);

    border-radius: 50%;

}


/* Hero content */

.hero-content {

    position: relative;

    z-index: 2;

    padding-top: 80px;

}


.eyebrow {

    color: var(--gold-light);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .4em;

    margin-bottom: 18px;

}


.hero h1 {

    font-family: var(--serif);

    font-size:
        clamp(55px, 7vw, 92px);

    font-weight: 600;

    line-height: .88;

    max-width: 850px;

}


.hero h1 em {

    color: var(--gold-light);

    font-style: normal;

}


.hero-description {

    color: #c8cdd0;

    max-width: 530px;

    font-size: 14px;

    margin:

        30px 0

        35px;

}


.hero-buttons {

    display: flex;

    gap: 13px;

    flex-wrap: wrap;

}


/* =========================================
   BUTTONS
========================================= */

.btn {

    display: inline-block;

    padding:
        14px
        23px;

    font-size: 9px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .17em;

    transition: .3s;

}


.btn-gold {

    background: var(--gold);

    color: #071018;

}


.btn-gold:hover {

    background: var(--gold-light);

}


.btn-outline {

    border:
        1px solid
        rgba(255,255,255,.5);

}


.btn-outline:hover {

    border-color: var(--gold);

    color: var(--gold-light);

}


/* =========================================
   VALUES
========================================= */

.values {

    background: #091018;

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

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

}


.values-grid {

    display: grid;

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

}


.value {

    padding: 25px;

    display: flex;

    align-items: center;

    gap: 14px;

    border-right:
        1px solid
        rgba(255,255,255,.08);

}


.value:last-child {

    border-right: none;

}


.value-icon {

    color: var(--gold);

    font-size: 20px;

}


.value strong {

    display: block;

    font-size: 10px;

    letter-spacing: .2em;

}


.value small {

    display: block;

    font-size: 9px;

    color: #777f84;

}


/* =========================================
   GENERAL SECTIONS
========================================= */

.section {

    padding: 110px 0;

}


.section-heading {

    max-width: 680px;

    margin:
        0 auto

        55px;

    text-align: center;

}


.section-heading h2 {

    font-family: var(--serif);

    font-size:
        clamp(45px,5vw,65px);

    line-height: 1;

    margin-bottom: 18px;

}


.section-heading h2 em {

    color: var(--gold-light);

    font-style: normal;

}


.section-heading p:last-child {

    color: var(--muted);

    font-size: 13px;

}


/* =========================================
   COLLECTION GRID
========================================= */

.collection-grid {

    display: grid;

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

    gap: 15px;

}


.collection-card {

    height: 440px;

    position: relative;

    display: flex;

    align-items: flex-end;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #1c252b,
            #6c5436
        );

    background-size: cover;

    background-position: center;

    transition: .5s;

}


/*
   Replace these with actual images later.
*/

.living-room {

    background:
        linear-gradient(
            180deg,
            transparent,
            #060a0ddd
        ),
        radial-gradient(
            circle at 45% 40%,
            #836b4c,
            #181817 40%,
            #080c10
        );

}


.bedroom {

    background:
        linear-gradient(
            180deg,
            transparent,
            #060a0ddd
        ),
        linear-gradient(
            135deg,
            #303b3f,
            #817665,
            #11161a
        );

}


.dining {

    background:
        linear-gradient(
            180deg,
            transparent,
            #060a0ddd
        ),
        linear-gradient(
            135deg,
            #433326,
            #b58a4c,
            #11100e
        );

}


.storage {

    background:
        linear-gradient(
            180deg,
            transparent,
            #060a0ddd
        ),
        linear-gradient(
            135deg,
            #171d20,
            #624a2e,
            #080c0e
        );

}


.collection-card:hover {

    transform: translateY(-5px);

}


.collection-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 20%,
            rgba(0,0,0,.92)
        );

}


.collection-content {

    position: relative;

    z-index: 2;

    padding: 28px;

}


.collection-content span {

    color: var(--gold);

    font-size: 9px;

    letter-spacing: .2em;

}


.collection-content h3 {

    font-family: var(--serif);

    font-size: 35px;

    line-height: 1;

    margin: 7px 0;

}


.collection-content p {

    color: #b9bec1;

    font-size: 10px;

    margin-bottom: 17px;

}


.collection-content strong {

    color: var(--gold-light);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .16em;

}


/* =========================================
   FEATURE
========================================= */

.feature {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    min-height: 600px;

    background: #080f15;

}


.feature-image {

    background:

        linear-gradient(
            rgba(8,14,20,.15),
            rgba(8,14,20,.3)
        ),

        radial-gradient(
            ellipse at center,
            #b08a54,
            #4b3927 20%,
            #191a1b 45%,
            #080e14 75%
        );

}


.feature-content {

    display: flex;

    justify-content: center;

    flex-direction: column;

    padding:
        80px
        clamp(35px,7vw,110px);

}


.feature-content h2 {

    font-family: var(--serif);

    font-size:
        clamp(45px,5vw,65px);

    line-height: 1;

    max-width: 560px;

    margin-bottom: 20px;

}


.feature-content h2 em {

    color: var(--gold-light);

    font-style: normal;

}


.feature-content > p {

    color: var(--muted);

    font-size: 13px;

    max-width: 510px;

    margin-bottom: 28px;

}


.text-link {

    color: var(--gold-light);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .17em;

}


.text-link span {

    font-size: 17px;

    margin-left: 8px;

}


/* =========================================
   ABOUT
========================================= */

.about {

    padding: 105px 0;

    background: var(--cream);

    color: #101820;

}


.about-grid {

    display: grid;

    grid-template-columns:
        1.2fr .8fr;

    gap: 80px;

    align-items: center;

}


.about h2 {

    font-family: var(--serif);

    font-size:
        clamp(45px,5vw,65px);

    line-height: 1;

    margin-bottom: 22px;

}


.about h2 em {

    color: #b1811c;

    font-style: normal;

}


.about p {

    max-width: 650px;

    color: #62686c;

    font-size: 13px;

    margin-bottom: 12px;

}


.about-highlight {

    display: block;

    margin-top: 25px;

    color: #b1811c;

    font-family: var(--serif);

    font-size: 28px;

}


/* =========================================
   QUOTE CARD
========================================= */

.quote-card {

    padding: 60px 35px;

    text-align: center;

    background: white;

    border:
        1px solid
        #b78a27;

}


.quote-card span {

    color: var(--gold);

    font-family: var(--serif);

    font-size: 80px;

    line-height: .3;

}


.quote-card p {

    color: #111820;

    font-family: var(--serif);

    font-size: 32px;

    margin: 35px auto 8px;

}


.quote-card small {

    font-size: 9px;

    letter-spacing: .2em;

    color: #777;

}


/* =========================================
   CONTACT
========================================= */

.contact {

    padding: 85px 0;

    background: #0a1118;

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

}


.contact-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;

}


.contact h2 {

    font-family: var(--serif);

    font-size:
        clamp(45px,5vw,65px);

    line-height: 1;

    margin-bottom: 20px;

}


.contact h2 em {

    color: var(--gold-light);

    font-style: normal;

}


.contact-grid > div:first-child p:last-child {

    color: var(--muted);

    max-width: 500px;

    font-size: 13px;

}


.contact-buttons {

    display: grid;

    gap: 13px;

}


.contact-card {

    padding: 22px;

    display: flex;

    align-items: center;

    gap: 18px;

    border:
        1px solid
        rgba(213,166,46,.3);

    transition: .3s;

}


.contact-card:hover {

    border-color: var(--gold);

    background:
        rgba(213,166,46,.06);

}


.contact-icon {

    width: 43px;

    height: 43px;

    display: grid;

    place-items: center;

    border:
        1px solid
        var(--gold);

    border-radius: 50%;

    color: var(--gold);

}


.contact-card small {

    display: block;

    font-size: 8px;

    color: #777f84;

    letter-spacing: .2em;

}


.contact-card strong {

    font-size: 14px;

}


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

footer {

    background: #03070a;

}


.footer-content {

    padding: 55px 0;

    display: flex;

    justify-content: space-between;

    gap: 30px;

}


.footer-logo {

    font-family: var(--serif);

    font-size: 29px;

    letter-spacing: .08em;

}


.footer-logo span {

    color: var(--gold-light);

}


.footer-content p {

    color: #70787d;

    font-size: 10px;

}


.footer-links {

    display: flex;

    align-items: center;

    gap: 25px;

}


.footer-links a {

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .16em;

    color: #858c90;

}


.footer-links a:hover {

    color: var(--gold-light);

}


.footer-bottom {

    padding:
        18px 0;

    border-top:
        1px solid
        rgba(255,255,255,.08);

    display: flex;

    justify-content: space-between;

    color: #5e666b;

    font-size: 9px;

}


/* =========================================
   FLOATING WHATSAPP
========================================= */

.floating-whatsapp {

    position: fixed;

    right: 20px;

    bottom: 20px;

    width: 56px;

    height: 56px;

    display: grid;

    place-items: center;

    background: var(--gold);

    color: #071018;

    border-radius: 50%;

    font-size: 23px;

    z-index: 100;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.4);

}


.floating-whatsapp:hover {

    background: var(--gold-light);

    transform: translateY(-3px);

}


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

@media (max-width: 900px) {


    .navigation {

        display: none;

        position: absolute;

        top: 90px;

        left: 4%;

        right: 4%;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 18px;

        background: #071017;

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

    }


    .navigation.active {

        display: flex;

    }


    .navigation a {

        padding: 12px;

    }


    .menu-toggle {

        display: block;

    }


    .values-grid {

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

    }


    .value:nth-child(2) {

        border-right: none;

    }


    .collection-grid {

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

    }


    .feature {

        grid-template-columns: 1fr;

    }


    .feature-image {

        min-height: 400px;

    }


    .about-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .contact-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }

}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 560px) {


    .top-bar-content {

        justify-content: center;

    }


    .top-bar-content span {

        display: none;

    }


    .hero {

        min-height: 680px;

    }


    .hero h1 {

        font-size: 55px;

    }


    .hero-description {

        font-size: 12px;

    }


    .values-grid {

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

    }


    .value {

        padding: 17px 10px;

    }


    .collection-grid {

        grid-template-columns: 1fr;

    }


    .collection-card {

        height: 390px;

    }


    .section {

        padding: 75px 0;

    }


    .feature-content {

        padding:
            65px 6%;

    }


    .footer-content {

        flex-direction: column;

    }


    .footer-links {

        flex-wrap: wrap;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 7px;

    }

}