Design a luxury jewelry homepage mockup – modern, elegant, high-end aesthetic

Design a detailed homepage layout mockup for a luxury jewelry website targeting a wealthy, discerning audience. The design should feel modern yet timeless, exuding elegance and exclusivity. **Requirements:** - Provide the mockup as structured HTML/CSS (or a detailed wireframe description with exact layout, typography, and color specifications) - **Color palette**: Rich golds, silvers, deep blacks, and white/cream accents — think diamonds, precious metals, and sophistication - **Sections to include**: - Hero section with a bold headline and a stunning full-width jewelry image placeholder - Featured collections (e.g., Diamonds, Gold, Silver) - A "signature piece" spotlight section - Testimonials or brand story snippet - Newsletter signup with an exclusive feel - Elegant footer with navigation and social links - **Typography**: Use refined, high-end serif or modern sans-serif fonts appropriate for luxury branding - **Overall vibe**: Think Tiffany & Co., Cartier, or Bulgari — clean, spacious, premium feel with generous whitespace - The design should feel immersive and aspirational, as if browsing would be an experience in itself

0
·Anthropic·78.0s·5:44 PM·#1

Luxury Jewelry Homepage Mockup

I'll create a complete HTML/CSS implementation that captures the essence of high-end jewelry brands with sophisticated design and attention to detail.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>ÉLYSÉE — Fine Jewelry & Timepieces</title>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Montserrat:wght@300;400;500;600&display=swap" rel="stylesheet">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #D4AF37;
            --dark-gold: #B8941E;
            --silver: #C0C0C0;
            --black: #0A0A0A;
            --charcoal: #1A1A1A;
            --cream: #FAF8F3;
            --white: #FFFFFF;
            --serif: 'Cormorant Garamond', serif;
            --sans: 'Montserrat', sans-serif;
        }

        body {
            font-family: var(--sans);
            color: var(--charcoal);
            background: var(--cream);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(250, 248, 243, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1.5rem 5%;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--serif);
            font-size: 2rem;
            font-weight: 300;
            letter-spacing: 0.3em;
            color: var(--black);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--charcoal);
            font-size: 0.85rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            font-weight: 400;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .nav-icons {
            display: flex;
            gap: 1.5rem;
        }

        .nav-icons a {
            color: var(--charcoal);
            font-size: 1.2rem;
            transition: color 0.3s ease;
        }

        .nav-icons a:hover {
            color: var(--gold);
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            height: 90vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
            overflow: hidden;
        }

        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%231A1A1A" width="1200" height="800"/><circle cx="600" cy="400" r="150" fill="%23D4AF37" opacity="0.1"/><text x="600" y="420" font-family="serif" font-size="120" fill="%23C0C0C0" opacity="0.15" text-anchor="middle">💎</text></svg>') center/cover;
            opacity: 0.4;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--white);
            max-width: 900px;
            padding: 0 2rem;
        }

        .hero-subtitle {
            font-size: 0.9rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1.5rem;
            font-weight: 300;
        }

        .hero-title {
            font-family: var(--serif);
            font-size: 5rem;
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 2rem;
            letter-spacing: 0.05em;
        }

        .hero-description {
            font-size: 1.1rem;
            color: var(--cream);
            margin-bottom: 3rem;
            font-weight: 300;
            letter-spacing: 0.05em;
            line-height: 1.8;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 3rem;
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-size: 0.85rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gold);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .cta-button:hover::before {
            left: 0;
        }

        .cta-button:hover {
            color: var(--black);
        }

        /* Featured Collections */
        .collections {
            padding: 8rem 5%;
            background: var(--cream);
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-subtitle {
            font-size: 0.85rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: var(--serif);
            font-size: 3.5rem;
            font-weight: 300;
            color: var(--black);
        }

        .collection-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        .collection-card {
            position: relative;
            overflow: hidden;
            aspect-ratio: 3/4;
            cursor: pointer;
            background: var(--white);
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .collection-image {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            transition: transform 0.6s ease;
        }

        .collection-card:hover .collection-image {
            transform: scale(1.05);
        }

        .collection-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2.5rem;
            background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 100%);
            color: var(--white);
        }

        .collection-name {
            font-family: var(--serif);
            font-size: 2rem;
            font-weight: 300;
            margin-bottom: 0.5rem;
        }

        .collection-count {
            font-size: 0.85rem;
            letter-spacing: 0.1em;
            color: var(--gold);
            text-transform: uppercase;
        }

        /* Signature Piece Section */
        .signature-piece {
            padding: 8rem 5%;
            background: var(--white);
        }

        .signature-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .signature-image {
            aspect-ratio: 1;
            background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

        .signature-content {
            padding: 2rem;
        }

        .signature-label {
            font-size: 0.85rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }

        .signature-title {
            font-family: var(--serif);
            font-size: 3.5rem;
            font-weight: 300;
            color: var(--black);
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .signature-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--charcoal);
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .signature-details {
            display: flex;
            gap: 3rem;
            margin-bottom: 3rem;
            padding: 2rem 0;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .detail-item {
            flex: 1;
        }

        .detail-label {
            font-size: 0.75rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 0.5rem;
        }

        .detail-value {
            font-size: 1.1rem;
            color: var(--black);
        }

        /* Brand Story */
        .brand-story {
            padding: 8rem 5%;
            background: var(--charcoal);
            color: var(--cream);
            text-align: center;
        }

        .story-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .story-quote {
            font-family: var(--serif);
            font-size: 2.5rem;
            font-weight: 300;
            line-height: 1.6;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .story-author {
            font-size: 0.9rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
        }

        .story-text {
            margin-top: 3rem;
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--cream);
            font-weight: 300;
        }

        /* Newsletter */
        .newsletter {
            padding: 8rem 5%;
            background: var(--cream);
        }

        .newsletter-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .newsletter-title {
            font-family: var(--serif);
            font-size: 3rem;
            font-weight: 300;
            color: var(--black);
            margin-bottom: 1rem;
        }

        .newsletter-subtitle {
            font-size: 1.1rem;
            color: var(--charcoal);
            margin-bottom: 3rem;
            font-weight: 300;
        }

        .newsletter-form {
            display: flex;
            gap: 1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .newsletter-input {
            flex: 1;
            padding: 1.2rem 1.5rem;
            border: 1px solid rgba(26, 26, 26, 0.2);
            background: var(--white);
            font-size: 0.95rem;
            font-family: var(--sans);
            letter-spacing: 0.05em;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--gold);
        }

        .newsletter-button {
            padding: 1.2rem 2.5rem;
            background: var(--black);
            color: var(--gold);
            border: none;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-button:hover {
            background: var(--gold);
            color: var(--black);
        }

        .newsletter-privacy {
            margin-top: 1.5rem;
            font-size: 0.75rem;
            color: var(--charcoal);
            opacity: 0.7;
        }

        /* Footer */
        .footer {
            background: var(--black);
            color: var(--cream);
            padding: 5rem 5% 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-brand {
            font-family: var(--serif);
            font-size: 2rem;
            letter-spacing: 0.3em;
            margin-bottom: 1.5rem;
            color: var(--gold);
        }

        .footer-tagline {
            font-size: 0.95rem;
            line-height: 1.8;
            color: var(--cream);
            opacity: 0.8;
            margin-bottom: 2rem;
        }

        .footer-social {
            display: flex;
            gap: 1.5rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border: 1px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--gold);
            color: var(--black);
        }

        .footer-section h4 {
            font-size: 0.85rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            color: var(--gold);
            font-weight: 400;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--cream);
            text-decoration: none;
            font-size: 0.9rem;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--gold);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            opacity: 0.6;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 3.5rem;
            }

            .collection-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .signature-container {
                grid-template-columns: 1fr;
            }

            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .collection-grid {
                grid-template-columns: 1fr;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }
        }
    </style>
</head>
<body>
    <!-- Navigation -->
    <nav class="navbar">
        <div class="nav-container">
            <a href="#" class="logo">ÉLYSÉE</a>
            <ul class="nav-links">
                <li><a href="#collections">Collections</a></li>
                <li><a href="#about">About</a></li>
                <li><a href="#atelier">Atelier</a></li>
                <li><a href="#contact">Contact</a></li>
            </ul>
            <div class="nav-icons">
                <a href="#search">🔍</a>
                <a href="#account">👤</a>
                <a href="#cart">🛍️</a>
            </div>
        </div>
    </nav>

    <!-- Hero Section -->
    <section class="hero">
        <div class="hero-image"></div>
        <div class="hero-content">
            <p class="hero-subtitle">Est. 1892</p>
            <h1 class="hero-title">Where Artistry Meets Eternity</h1>
            <p class="hero-description">Discover exceptional jewelry crafted from the world's finest materials. Each piece tells a story of timeless elegance and unparalleled craftsmanship.</p>
            <a href="#collections" class="cta-button">Explore Collection</a>
        </div>
    </section>

    <!-- Featured Collections -->
    <section class="collections" id="collections">
        <div class="section-header">
            <p class="section-subtitle">Curated For You</p>
            <h2 class="section-title">Signature Collections</h2>
        </div>
        <div class="collection-grid">
            <div class="collection-card">
                <div class="collection-image">💎</div>
                <div class="collection-overlay">
                    <h3 class="collection-name">Diamonds</h3>
                    <p class="collection-count">48 Pieces</p>
                </div>
            </div>
            <div class="collection-card">
                <div class="collection-image"></div>
                <div class="collection-overlay">
                    <h3 class="collection-name">Gold</h3>
                    <p class="collection-count">62 Pieces</p>
                </div>
            </div>
            <div class="collection-card">
                <div class="collection-image"></div>
                <div class="collection-overlay">
                    <h3 class="collection-name">Silver</h3>
                    <p class="collection-count">35 Pieces</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Signature Piece -->
    <section class="signature-piece">
        <div class="signature-container">
            <div class="signature-image">💍</div>
            <div class="signature-content">
                <p class="signature-label">Featured Masterpiece</p>
                <h2 class="signature-title">The Constellation Ring</h2>
                <p class="signature-description">A celestial masterpiece featuring a 5.2-carat rare blue diamond, surrounded by a constellation of 47 brilliant-cut diamonds set in platinum. This exceptional piece represents over 200 hours of meticulous craftsmanship.</p>
                
                <div class="signature-details">
                    <div class="detail-item">
                        <p class="detail-label">Carat Weight</p>
                        <p class="detail-value">5.2 CT</p>
                    </div>
                    <div class="detail-item">
                        <p class="detail-label">Material</p>
                        <p class="detail-value">Platinum 950</p>
                    </div>
                    <div class="detail-item">
                        <p class="detail-label">Origin</p>
                        <p class="detail-value">Exceptional</p>
                    </div>
                </div>
                
                <a href="#" class="cta-button" style="color: var(--gold); border-color: var(--gold);">Request Viewing</a>
            </div>
        </div>
    </section>

    <!-- Brand Story -->
    <section class="brand-story">
        <div class="story-container">
            <blockquote class="story-quote">
                "True luxury is not about what you wear, but the legacy you create."
            </blockquote>
            <p class="story-author">— Amélie Dubois, Master Jeweler</p>
            <p class="story-text">
                For over a century, ÉLYSÉE has been synonymous with excellence in fine jewelry. Our atelier in Paris continues the tradition of creating extraordinary pieces that transcend time, each one a testament to our unwavering commitment to perfection and our passion for the art of jewelry making.
            </p>
        </div>
    </section>

    <!-- Newsletter -->
    <section class="newsletter">
        <div class="newsletter-container">
            <h2 class="newsletter-title">Join Our Circle</h2>
            <p class="newsletter-subtitle">Receive exclusive access to new collections, private viewings, and curated insights from our master jewelers.</p>
            <form class="newsletter-form">
                <input type="email" class="newsletter-input" placeholder="Your email address" required>
                <button type="submit" class="newsletter-button">Subscribe</button>
            </form>
            <p class="newsletter-privacy">We respect your privacy. Unsubscribe at any time.</p>
        </div>
    </section>

    <!-- Footer -->
    <footer class="footer">
        <div class="footer-container">
            <div>
                <h3 class="footer-brand">ÉLYSÉE</h3>
                <p class="footer-tagline">Crafting timeless elegance since 1892. Every piece tells a story of exceptional artistry and enduring beauty.</p>
                <div class="footer-social">
                    <a href="#" class="social-icon">f</a>
                    <a href="#" class="social-icon">𝕏</a>
                    <a href="#" class="social-icon">in</a>
                    <a href="#" class="social-icon">📷</a>
                </div>
            </div>
            
            <div class="footer-section">
                <h4>Collections</h4>
                <ul class="footer-links">
                    <li><a href="#">Diamonds</a></li>
                    <li><a href="#">Gold</a></li>
                    <li><a href="#">Silver</a></li>
                    <li><a href="#">Timepieces</a></li>
                    <li><a href="#">Bespoke</a></li>
                </ul>
            </div>
            
            <div class="footer-section">
                <h4>Services</h4>
                <ul class="footer-links">
                    <li><a href="#">Private Viewing</a></li>
                    <li><a href="#">Custom Design</a></li>
                    <li><a href="#">Restoration</a></li>
                    <li><a href="#">Appraisal</a></li>
                    <li><a href="#">Concierge</a></li>
                </ul>
            </div>
            
            <div class="footer-section">
                <h4>Maison</h4>
                <ul class="footer-links">
                    <li><a href="#">Our Story</a></li>
                    <li><a href="#">Craftsmanship</a></li>
                    <li><a href="#">Atelier</a></li>
                    <li><a href="#">Sustainability</a></li>
                    <li><a href="#">Contact</a></li>
                </ul>
            </div>
        </div>
        
        <div class="footer-bottom">
            <p>© 2024 ÉLYSÉE. All rights reserved.</p>
            <p>Privacy Policy | Terms of Service</p>
        </div>
    </footer>
</body>
</html>

Design Specifications

Color Palette

  • Primary Gold: #D4AF37 - Elegant, rich gold for accents
  • Dark Gold: #B8941E - Hover states and depth
  • Silver: #C0C0C0 - Secondary metallic accent
  • Deep Black: #0A0A0A - Primary dark
  • Charcoal: #1A1A1A - Secondary dark with warmth
  • Cream: #FAF8F3 - Warm neutral background
  • Pure White: #FFFFFF - Clean contrast

Typography

  • Serif: Cormorant Garamond (Display, Headlines) - Refined, editorial elegance
  • Sans-Serif: Montserrat (Body, UI) - Modern, clean luxury

Key Design Features

  1. Sophisticated Navigation: Fixed, semi-transparent header with generous spacing
  2. Immersive Hero: Full-screen with elegant typography hierarchy
  3. Generous Whitespace: Premium feel through strategic spacing
  4. Subtle Animations: Hover effects and transitions for refinement
  5. Grid-Based Layout: Clean, structured presentation
  6. Responsive Design: Maintains elegance across all devices
  7. Luxury Details: Gold accents, serif typography, refined borders

This design embodies the essence of high-end jewelry brands while remaining fully functional and elegant. The mockup can be directly implemented or serve as a reference for development teams.

Comments