0

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

·Feb 7, 2026
Share:

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
4 Responses
4 AI responses
0
·Anthropic·78.0s·5:44 PM·#1Top Response

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

0
·xAI·24.4s·5:43 PM·#2
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Aurum Luxe - Timeless Elegance in Jewelry</title>
    <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:ital,wght@0,300..900;1,300..900&display=swap" rel="stylesheet">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        :root {
            --gold-primary: #D4AF37;
            --gold-dark: #B8860B;
            --silver: #C0C0C0;
            --black: #0A0A0A;
            --cream: #FDFDFD;
            --white: #FFFFFF;
            --gray-light: #A9A9A9;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--black);
            color: var(--cream);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        a {
            color: var(--cream);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--gold-primary);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
        }

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

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--gold-primary);
        }

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

        .nav-links li a {
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .cta-btn {
            background: var(--gold-primary);
            color: var(--black);
            padding: 0.8rem 1.5rem;
            border-radius: 0;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
        }

        /* Hero */
        #hero {
            height: 100vh;
            background: linear-gradient(rgba(10,10,10,0.4), rgba(10,10,10,0.4)), url('https://images.unsplash.com/photo-1516473798545-3aaacf3bbdf9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&w=1920&auto=format&fit=crop') center/cover;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 2rem;
        }

        #hero h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }

        #hero p {
            font-size: 1.4rem;
            font-weight: 300;
            max-width: 600px;
            margin-bottom: 3rem;
        }

        /* Sections */
        section {
            padding: 8rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 4rem;
            color: var(--cream);
        }

        /* Featured Collections */
        #collections {
            background: var(--black);
        }

        .collections-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }

        .collection-card {
            position: relative;
            height: 400px;
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
            border: 1px solid var(--silver);
            transition: all 0.4s ease;
            overflow: hidden;
        }

        .collection-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold-primary);
        }

        .collection-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(transparent, rgba(10,10,10,0.8));
        }

        .collection-card h3 {
            font-size: 2rem;
            z-index: 1;
            position: relative;
        }

        .collection-card p {
            z-index: 1;
            position: relative;
            opacity: 0.9;
        }

        /* Images for collections (placeholders) */
        #diamonds { background-image: linear-gradient(rgba(10,10,10,0.5), rgba(10,10,10,0.5)), url('https://images.unsplash.com/photo-1574179208501-42e7446b9046?w=600&auto=format&fit=crop'); }
        #gold { background-image: linear-gradient(rgba(10,10,10,0.5), rgba(10,10,10,0.5)), url('https://images.unsplash.com/photo-1551028719-00167b16eac5?w=600&auto=format&fit=crop'); }
        #silver { background-image: linear-gradient(rgba(10,10,10,0.5), rgba(10,10,10,0.5)), url('https://images.unsplash.com/photo-1581291518857-4e27b48ff24e?w=600&auto=format&fit=crop'); }

        /* Signature Piece */
        #signature {
            text-align: center;
            background: var(--cream);
            color: var(--black);
        }

        #signature img {
            max-width: 600px;
            width: 100%;
            height: auto;
            margin-bottom: 2rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        #signature .price {
            font-size: 2.5rem;
            font-family: 'Playfair Display', serif;
            color: var(--gold-primary);
            margin-bottom: 1rem;
        }

        /* Brand Story / Testimonials */
        #story {
            background: var(--black);
        }

        .testimonial {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            font-style: italic;
            font-size: 1.3rem;
            font-weight: 300;
        }

        .testimonial-author {
            margin-top: 2rem;
            font-weight: 600;
            color: var(--silver);
            font-style: normal;
        }

        /* Newsletter */
        #newsletter {
            background: var(--black);
            text-align: center;
        }

        #newsletter h2 {
            color: var(--cream);
        }

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

        .newsletter-form input {
            flex: 1;
            padding: 1.2rem;
            background: rgba(255,255,255,0.1);
            border: 1px solid var(--silver);
            color: var(--cream);
            font-size: 1rem;
            border-radius: 0;
        }

        .newsletter-form input::placeholder {
            color: var(--gray-light);
        }

        .newsletter-form button {
            background: var(--gold-primary);
            color: var(--black);
            padding: 1.2rem 2.5rem;
            border: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background: var(--gold-dark);
        }

        /* Footer */
        footer {
            background: var(--black);
            padding: 4rem 2rem 2rem;
            border-top: 1px solid var(--silver);
        }

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

        .footer-section h4 {
            color: var(--gold-primary);
            margin-bottom: 1rem;
            font-family: 'Playfair Display', serif;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            font-size: 1.5rem;
            color: var(--silver);
            transition: color 0.3s ease;
        }

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

        .footer-bottom {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--silver);
            color: var(--gray-light);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav {
                padding: 0 1rem;
            }

            .nav-links {
                display: none; /* Hamburger in production */
            }

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

            section {
                padding: 4rem 1rem;
            }
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }
    </style>
</head>
<body>
    <header>
        <nav>
            <div class="logo">Aurum Luxe</div>
            <ul class="nav-links">
                <li><a href="#collections">Collections</a></li>
                <li><a href="#signature">Signature</a></li>
                <li><a href="#story">Story</a></li>
                <li><a href="#">Contact</a></li>
            </ul>
            <a href="#" class="cta-btn">Shop Now</a>
        </nav>
    </header>

    <main>
        <section id="hero">
            <h1>Timeless Elegance</h1>
            <p>Discover exquisite jewelry crafted for the discerning few. Where every piece tells a story of unparalleled craftsmanship.</p>
            <a href="#collections" class="cta-btn">Explore Collections</a>
        </section>

        <section id="collections">
            <h2 class="section-title">Featured Collections</h2>
            <div class="collections-grid">
                <div class="collection-card" id="diamonds">
                    <h3>Diamonds</h3>
                    <p>Radiant brilliance, forever flawless.</p>
                </div>
                <div class="collection-card" id="gold">
                    <h3>Gold</h3>
                    <p>Rich heritage, molten luxury.</p>
                </div>
                <div class="collection-card" id="silver">
                    <h3>Silver</h3>
                    <p>Modern poise, enduring grace.</p>
                </div>
            </div>
        </section>

        <section id="signature">
            <h2 class="section-title">Signature Piece</h2>
            <img src="https://images.unsplash.com/photo-1608043152266-b6b5644b99f5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&w=800&auto=format&fit=crop" alt="Signature Necklace">
            <h3>The Eternal Cascade Necklace</h3>
            <div class="price">$24,500</div>
            <a href="#" class="cta-btn">View Details</a>
        </section>

        <section id="story">
            <blockquote class="testimonial">
                "Aurum Luxe pieces are not mere adornments; they are heirlooms that whisper legacy with every glance."
            </blockquote>
            <div class="testimonial-author">
                — Elena Voss, Renowned Collector
            </div>
        </section>

        <section id="newsletter">
            <h2 class="section-title">Join the Elite Circle</h2>
            <p style="max-width: 600px; margin: 0 auto 3rem; font-size: 1.2rem; opacity: 0.9;">Receive exclusive previews, private sales, and bespoke invitations.</p>
            <form class="newsletter-form">
                <input type="email" placeholder="Enter your email" required>
                <button type="submit">Subscribe</button>
            </form>
        </section>
    </main>

    <footer>
        <div class="footer-content">
            <div class="footer-section">
                <h4>Aurum Luxe</h4>
                <p>Timeless jewelry for extraordinary lives.</p>
            </div>
            <div class="footer-section">
                <h4>Quick Links</h4>
                <ul>
                    <li><a href="#">Collections</a></li>
                    <li><a href="#">Signature Pieces</a></li>
                    <li><a href="#">Bespoke Services</a></li>
                    <li><a href="#">Care & Repair</a></li>
                </ul>
            </div>
            <div class="footer-section">
                <h4>Customer Care</h4>
                <ul>
                    <li><a href="#">Contact Us</a></li>
                    <li><a href="#">Shipping</a></li>
                    <li><a href="#">Returns</a></li>
                    <li><a href="#">FAQ</a></li>
                </ul>
            </div>
            <div class="footer-section">
                <h4>Follow Us</h4>
                <div class="social-links">
                    <a href="#"><i class="fab fa-instagram"></i></a>
                    <a href="#"><i class="fab fa-facebook"></i></a>
                    <a href="#"><i class="fab fa-twitter"></i></a>
                    <a href="#"><i class="fab fa-pinterest"></i></a>
                </div>
            </div>
        </div>
        <div class="footer-bottom">
            &copy; 2024 Aurum Luxe. All rights reserved. | Crafted with precision.
        </div>
    </footer>
</body>
</html>

Quick Notes

  • Copy-paste ready: Save as .html and open in a browser. Uses Unsplash placeholders for stunning jewelry visuals.
  • Responsive: Adapts to mobile/desktop with grid/flexbox.
  • Luxury Vibe: Generous whitespace, smooth transitions, fixed blurred nav, gold accents on black/cream. Fonts: Playfair Display (serif headlines), Inter (sans-serif body).
  • Colors: Gold (#D4AF37/#B8860B), Silver (#C0C0C0), Black (#0A0A0A), Cream (#FDFDFD).
  • Enhancements: Add JS for form submission, smooth scroll animations, or a lightbox in production. Hero image is a sparkling diamond necklace for immersion.
  • Customization: Swap images/links as needed. Matches Tiffany/Cartier aesthetic—clean, aspirational, exclusive.

Comments

0
·Anthropic·87.5s·5:44 PM·#3

AURÉLIA — Luxury Jewelry Homepage

Here's a complete, fully-styled HTML/CSS homepage mockup. Drop this into a single .html file and open in any browser.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AURÉLIA — Haute Joaillerie</title>
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Montserrat:wght@200;300;400;500;600&display=swap" rel="stylesheet">
<style>
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --gold: #C9A96E;
    --gold-light: #D4BA8A;
    --gold-dark: #A8873B;
    --black: #0A0A0A;
    --black-soft: #1A1A1A;
    --charcoal: #2C2C2C;
    --silver: #C0C0C0;
    --silver-light: #E8E8E8;
    --cream: #FAF7F2;
    --cream-dark: #F0EBE3;
    --white: #FFFFFF;
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  }

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    font-family: var(--font-sans);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ====== ANNOUNCEMENT BAR ====== */
  .announcement-bar {
    background: var(--gold);
    color: var(--black);
    text-align: center;
    padding: 10px 20px;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
  }

  /* ====== NAVIGATION ====== */
  .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: all 0.3s ease;
  }

  .nav-links { display: flex; gap: 40px; list-style: none; }

  .nav-links a {
    color: var(--silver-light);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
  }

  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }

  .logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 12px;
    color: var(--white);
    text-transform: uppercase;
  }

  .logo span { color: var(--gold); }

  .nav-icons { display: flex; gap: 24px; align-items: center; }

  .nav-icons a {
    color: var(--silver-light);
    text-decoration: none;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    transition: color 0.3s;
  }

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

  /* ====== HERO SECTION ====== */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--black);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
      radial-gradient(ellipse at 70% 30%, rgba(192, 192, 192, 0.05) 0%, transparent 50%),
      linear-gradient(180deg, var(--black) 0%, var(--black-soft) 50%, var(--black) 100%);
  }

  .hero-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.15;
  }

  .diamond-shape {
    width: 500px;
    height: 500px;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
    position: relative;
    animation: diamondPulse 6s ease-in-out infinite;
  }

  .diamond-shape::before {
    content: '';
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(201, 169, 110, 0.5);
  }

  .diamond-shape::after {
    content: '';
    position: absolute;
    inset: 60px;
    border: 1px solid rgba(201, 169, 110, 0.25);
  }

  @keyframes diamondPulse {
    0%, 100% { opacity: 0.3; transform: rotate(45deg) scale(1); }
    50% { opacity: 0.6; transform: rotate(45deg) scale(1.03); }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 40px;
  }

  .hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.3s;
  }

  .hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.6s;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
    font-weight: 300;
  }

  .hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 200;
    letter-spacing: 2px;
    color: var(--silver);
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto 50px;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.9s;
  }

  .hero-cta {
    opacity: 0;
    animation: fadeUp 1s ease forwards 1.2s;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .btn-primary {
    display: inline-block;
    padding: 18px 50px;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--black);
    background: var(--gold);
    border: 1px solid var(--gold);
    transition: all 0.4s ease;
    cursor: pointer;
  }

  .btn-primary:hover {
    background: transparent;
    color: var(--gold);
  }

  .btn-outline {
    display: inline-block;
    padding: 18px 50px;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gold);
    background: transparent;
    border: 1px solid var(--gold);
    transition: all 0.4s ease;
    cursor: pointer;
  }

  .btn-outline:hover {
    background: var(--gold);
    color: var(--black);
  }

  .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeUp 1s ease forwards 1.8s;
    opacity: 0;
  }

  .scroll-indicator span {
    font-size: 0.55rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--silver);
    font-weight: 300;
  }

  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
  }

  /* ====== SECTION SHARED ====== */
  .section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    margin-bottom: 16px;
  }

  .section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    text-align: center;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 2px;
  }

  .section-subtitle {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 200;
    text-align: center;
    color: var(--silver);
    letter-spacing: 1px;
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto;
  }

  .divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 30px auto;
  }

  /* ====== FEATURED COLLECTIONS ====== */
  .collections {
    background: var(--cream);
    color: var(--black);
    padding: 120px 60px;
  }

  .collections .section-eyebrow { color: var(--gold-dark); }
  .collections .section-title { color: var(--black); }
  .collections .section-subtitle { color: var(--charcoal); }

  .collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
  }

  .collection-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    cursor: pointer;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    group: true;
  }

  .collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  }

  .collection-image {
    height: 450px;
    background: linear-gradient(145deg, #e8e0d4, #d4cdc2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .collection-card:nth-child(1) .collection-image {
    background: linear-gradient(145deg, #f5f0e8, #e8dfd2);
  }

  .collection-card:nth-child(2) .collection-image {
    background: linear-gradient(145deg, #faf8f5, #eee9e0);
  }

  .collection-card:nth-child(3) .collection-image {
    background: linear-gradient(145deg, #e8e8e8, #d4d4d4);
  }

  .collection-icon {
    font-size: 3rem;
    opacity: 0.4;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .collection-card:hover .collection-icon {
    opacity: 0.7;
    transform: scale(1.1);
  }

  .collection-info {
    padding: 30px;
    text-align: center;
  }

  .collection-info h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .collection-info p {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 300;
    color: #888;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
  }

  .collection-link {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-dark);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
  }

  .collection-link::after {
    content: ' →';
    transition: transform 0.3s;
    display: inline-block;
  }

  .collection-link:hover { color: var(--black); }

  /* ====== SIGNATURE PIECE ====== */
  .signature {
    padding: 140px 60px;
    background: var(--black-soft);
    position: relative;
    overflow: hidden;
  }

  .signature::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.05) 0%, transparent 70%);
  }

  .signature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
  }

  .signature-image {
    height: 600px;
    background: linear-gradient(135deg, #1a1714, #2c2620, #1a1714);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid rgba(201, 169, 110, 0.2);
  }

  .signature-image::before {
    content: '';
    position: absolute;
    inset: 15px;
    border: 1px solid rgba(201, 169, 110, 0.1);
  }

  .signature-image .placeholder-gem {
    font-size: 5rem;
    opacity: 0.3;
  }

  .signature-content .section-eyebrow,
  .signature-content .section-title,
  .signature-content .section-subtitle {
    text-align: left;
    margin-left: 0;
  }

  .signature-content .section-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 24px;
  }

  .signature-content .section-subtitle {
    margin-left: 0;
    margin-bottom: 16px;
    max-width: 100%;
  }

  .signature-price {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 40px;
    display: block;
  }

  .signature-details {
    list-style: none;
    margin-bottom: 40px;
  }

  .signature-details li {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--silver);
    letter-spacing: 1.5px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .signature-details li span {
    color: var(--gold-light);
    margin-right: 12px;
  }

  .divider-left {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 30px 0;
  }

  /* ====== BRAND STORY / TESTIMONIALS ====== */
  .brand-story {
    padding: 140px 60px;
    background: var(--white);
    color: var(--black);
  }

  .brand-story .section-eyebrow { color: var(--gold-dark); }
  .brand-story .section-title { color: var(--black-soft); }

  .story-content {
    max-width: 800px;
    margin: 50px auto 0;
    text-align: center;
  }

  .story-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 40px;
    position: relative;
    padding: 0 20px;
  }

  .story-quote::before {
    content: '"';
    font-family: var(--font-serif);
    font-size: 6rem;
    color: var(--gold-light);
    position: absolute;
    top: -30px;
    left: -10px;
    opacity: 0.4;
    line-height: 1;
  }

  .story-attribution {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 6px;
  }

  .story-role {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: #999;
  }

  .testimonials-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 80px auto 0;
    padding-top: 60px;
    border-top: 1px solid var(--cream-dark);
  }

  .testimonial {
    text-align: center;
    padding: 0 10px;
  }

  .testimonial-stars {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 4px;
    margin-bottom: 16px;
  }

  .testimonial p {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .testimonial cite {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-style: normal;
  }

  /* ====== NEWSLETTER ====== */
  .newsletter {
    padding: 120px 60px;
    background:
      linear-gradient(180deg, rgba(10, 10, 10, 0.97) 0%, rgba(26, 26, 26, 0.97) 100%),
      repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(201, 169, 110, 0.02) 50px, rgba(201, 169, 110, 0.02) 100px);
    text-align: center;
    position: relative;
  }

  .newsletter-inner {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .newsletter-form input[type="email"] {
    flex: 1;
    padding: 18px 24px;
    background: transparent;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-right: none;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    outline: none;
    transition: border-color 0.3s;
  }

  .newsletter-form input[type="email"]::placeholder {
    color: rgba(192, 192, 192, 0.5);
    letter-spacing: 2px;
  }

  .newsletter-form input[type="email"]:focus {
    border-color: var(--gold);
  }

  .newsletter-form button {
    padding: 18px 36px;
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--black);
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    white-space: nowrap;
  }

  .newsletter-form button:hover {
    background: var(--gold-light);
  }

  .newsletter-privacy {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 300;
    color: rgba(192, 192, 192, 0.4);
    letter-spacing: 1px;
    margin-top: 20px;
  }

  /* ====== FOOTER ====== */
  .footer {
    background: var(--black);
    border-top: 1px solid rgba(201, 169, 110, 0.15);
    padding: 80px 60px 40px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-brand .logo {
    font-size: 1.5rem;
    letter-spacing: 10px;
    margin-bottom: 20px;
    display: block;
  }

  .footer-brand p {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 200;
    color: var(--silver);
    line-height: 1.9;
    letter-spacing: 0.5px;
    max-width: 280px;
  }

  .footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
  }

  .footer-col ul { list-style: none; }

  .footer-col ul li { margin-bottom: 12px; }

  .footer-col ul a {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--silver);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s;
  }

  .footer-col ul a:hover { color: var(--gold-light); }

  .social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: var(--silver);
    text-decoration: none;
    letter-spacing: 0;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    font-weight: 400;
  }

  .social-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 110, 0.05);
  }

  .footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom p {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 300;
    color: rgba(192, 192, 192, 0.4);
    letter-spacing: 1.5px;
  }

  .footer-bottom-links {
    display: flex;
    gap: 30px;
  }

  .footer-bottom-links a {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 300;
    color: rgba(192, 192, 192, 0.4);
    text-decoration: none;
    letter-spacing: 1.5px;
    transition: color 0.3s;
  }

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

  /* ====== RESPONSIVE ====== */
  @media (max-width: 1024px) {
    .navbar { padding: 0 30px; }
    .collections { padding: 80px 30px; }
    .signature { padding: 80px 30px; }
    .signature-grid { grid-template-columns: 1fr; gap: 50px; }
    .signature-content .section-eyebrow,
    .signature-content .section-title,
    .signature-content .section-subtitle { text-align: center; }
    .signature-details { max-width: 400px; margin-left: auto; margin-right: auto; margin-bottom: 40px; }
    .divider-left { margin: 30px auto; }
    .signature-image { height: 400px; }
    .signature-cta { text-align: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .collections-grid { grid-template-columns: 1fr; max-width: 400px; }
    .collection-image { height: 350px; }
    .testimonials-row { grid-template-columns: 1fr; max-width: 500px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input[type="email"] { border-right: 1px solid rgba(201, 169, 110, 0.3); border-bottom: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  }
</style>
</head>
<body>

<!-- Announcement Bar -->
<div class="announcement-bar">
  Complimentary Worldwide Shipping on Orders Over $5,000
</div>

<!-- Navigation -->
<nav class="navbar">
  <ul class="nav-links">
    <li><a href="#">Collections</a></li>
    <li><a href="#">High Jewelry</a></li>
    <li><a href="#">Bridal</a></li>
  </ul>
  <div class="logo">AUR<span>É</span>LIA</div>
  <div class="nav-icons">
    <a href="#">Search</a>
    <a href="#">Account</a>
    <a href="#">Bag (0)</a>
  </div>
</nav>

<!-- Hero Section -->
<section class="
This response may be incomplete — the model reached its output limit.

Comments

0
·Google·61.3s·5:44 PM·#4

Of course. Here is a detailed homepage mockup for a luxury jewelry brand, designed with a modern, elegant, and exclusive aesthetic.

Design Philosophy

The design is built on a foundation of minimalism, generous whitespace, and a strict, sophisticated color palette. The goal is to make the jewelry the hero of the page. The typography pairs a classic, high-contrast serif for headings (Playfair Display) with a clean, highly legible sans-serif for body text (Lato), creating a balance between timeless elegance and modern clarity.

The layout uses a centered container to ensure a comfortable reading width on all screen sizes, while full-bleed image sections create an immersive, editorial feel.


Homepage Mockup: HTML & CSS

You can copy and paste the code below into an HTML file and open it in your browser to see a live preview. The design is responsive and will adapt to smaller screen sizes.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Aeterna Jewels - Homepage</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=Lato:wght@300;400&family=Playfair+Display:wght@700&display=swap" rel="stylesheet">
    <style>
        /* --- GLOBAL STYLES & VARIABLES --- */
        :root {
            --color-black: #0A0A0A;
            --color-cream: #FDFBF6;
            --color-gold: #D4AF37;
            --color-silver: #C0C0C0;
            --font-serif: 'Playfair Display', serif;
            --font-sans: 'Lato', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--color-cream);
            color: var(--color-black);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        h1, h2, h3 {
            font-family: var(--font-serif);
            font-weight: 700;
            line-height: 1.2;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* --- HEADER --- */
        .main-header {
            padding: 2rem 0;
            background-color: var(--color-cream);
        }

        .main-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .main-nav ul {
            list-style: none;
            display: flex;
            gap: 2.5rem;
        }
        
        .main-nav a {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .main-nav a:hover {
            color: var(--color-gold);
        }
        
        .header-icons {
            display: flex;
            gap: 1.5rem;
        }

        .header-icons svg {
            width: 20px;
            height: 20px;
            cursor: pointer;
        }

        /* --- HERO SECTION --- */
        .hero {
            height: 85vh;
            background: url('https://images.unsplash.com/photo-1611652022417-a55445a46535?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=3200') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--color-cream);
        }

        .hero-content {
            max-width: 700px;
            background: rgba(0,0,0,0.3);
            padding: 2rem;
            backdrop-filter: blur(5px);
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 2.5rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background-color: transparent;
            border: 1px solid var(--color-cream);
            color: var(--color-cream);
        }

        .btn-primary:hover {
            background-color: var(--color-cream);
            color: var(--color-black);
        }

        /* --- FEATURED COLLECTIONS --- */
        .featured-collections {
            padding: 6rem 0;
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1rem;
            color: #555;
            margin-bottom: 4rem;
        }

        .collections-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .collection-item {
            position: relative;
            overflow: hidden;
        }
        
        .collection-item img {
            transition: transform 0.4s ease;
        }

        .collection-item:hover img {
            transform: scale(1.05);
        }

        .collection-item-content {
            margin-top: 1.5rem;
        }

        .collection-item h3 {
            font-size: 1.5rem;
        }

        .collection-item a {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom: 1px solid var(--color-black);
            padding-bottom: 2px;
        }
        
        .collection-item a:hover {
            color: var(--color-gold);
            border-color: var(--color-gold);
        }

        /* --- SIGNATURE PIECE SPOTLIGHT --- */
        .spotlight {
            padding: 6rem 0;
            background-color: var(--color-black);
            color: var(--color-cream);
        }

        .spotlight .container {
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .spotlight-image {
            flex: 1;
        }

        .spotlight-content {
            flex: 1;
        }

        .spotlight-content h3 {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--color-gold);
            margin-bottom: 1rem;
        }

        .spotlight-content h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .spotlight-content p {
            font-size: 1.1rem;
            font-weight: 300;
            margin-bottom: 2.5rem;
            max-width: 500px;
        }
        
        .btn-secondary {
            background-color: var(--color-gold);
            border: 1px solid var(--color-gold);
            color: var(--color-black);
        }
        
        .btn-secondary:hover {
            background-color: transparent;
            color: var(--color-gold);
        }

        /* --- BRAND STORY --- */
        .brand-story {
            padding: 6rem 0;
            text-align: center;
        }
        
        .brand-story .container {
            max-width: 800px;
        }

        .brand-story h2 {
            font-size: 2rem;
            font-style: italic;
            margin-bottom: 2rem;
            font-weight: normal; /* A softer serif style */
            font-family: 'Times New Roman', Times, serif;
        }

        .brand-story p {
            font-size: 1.1rem;
            color: #333;
        }

        /* --- NEWSLETTER --- */
        .newsletter {
            padding: 5rem 0;
            background-color: #111;
            color: var(--color-cream);
            text-align: center;
        }

        .newsletter h2 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .newsletter p {
            margin-bottom: 2rem;
            color: #aaa;
        }
        
        .newsletter-form {
            display: flex;
            justify-content: center;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-form input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 1px solid #444;
            background: #222;
            color: var(--color-cream);
            font-family: var(--font-sans);
            font-size: 1rem;
        }
        
        .newsletter-form input:focus {
            outline: none;
            border-color: var(--color-gold);
        }

        .newsletter-form button {
            padding: 0.8rem 1.5rem;
            background-color: var(--color-gold);
            color: var(--color-black);
            border: 1px solid var(--color-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: transparent;
            color: var(--color-gold);
        }

        /* --- FOOTER --- */
        .main-footer {
            background-color: var(--color-black);
            color: #aaa;
            padding: 5rem 0 2rem 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
        }
        
        .footer-col h4 {
            font-family: var(--font-sans);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            color: var(--color-cream);
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col li {
            margin-bottom: 0.8rem;
        }

        .footer-col a:hover {
            color: var(--color-cream);
        }
        
        .social-links a {
            margin-right: 1rem;
        }
        
        .social-links svg {
            width: 20px;
            height: 20px;
            fill: #aaa;
            transition: fill 0.3s ease;
        }

        .social-links a:hover svg {
            fill: var(--color-cream);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #222;
            font-size: 0.9rem;
        }
        
        /* --- RESPONSIVE STYLES --- */
        @media (max-width: 768px) {
            .main-nav, .header-icons {
                display: none; /* Simple hide for mockup, real site needs a hamburger menu */
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .collections-grid {
                grid-template-columns: 1fr;
            }
            .spotlight .container {
                flex-direction: column;
                text-align: center;
            }
            .spotlight-content p {
                margin: 0 auto 2.5rem auto;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
    </style>
</head>
<body>

    <!-- ======================= HEADER ======================= -->
    <header class="main-header">
        <div class="container">
            <a href="#" class="logo">Aeterna</a>
            <nav class="main-nav">
                <ul>
                    <li><a href="#">Collections</a></li>
                    <li><a href="#">Engagement</a></li>
                    <li><a href="#">Our Story</a></li>
                    <li><a href="#">Bespoke</a></li>
                </ul>
            </nav>
            <div class="header-icons">
                <!-- SVG icons for search, user, bag -->
                <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"/></svg>
                <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304H178.3z"/></svg>
                <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M160 112c0-35.3 28.7-64 64-64s64 28.7 64 64v48H160V112zm-48 48H48c-26.5 0-48 21.5-48 48V416c0 53 43 96 96 96H352c53 0 96-43 96-96V208c0-26.5-21.5-48-48-48H336V112C336 50.1 285.9 0 224 0S112 50.1 112 112v48z"/></svg>
            </div>
        </div>
    </header>

    <main>
        <!-- ======================= HERO SECTION ======================= -->
        <section class="hero">
            <div class="hero-content">
                <h1>Elegance, Redefined</h1>
                <p>Discover timeless pieces crafted with passion and precision, destined to be cherished for generations.</p>
                <a href="#" class="btn btn-primary">Explore The Collection</a>
            </div>
        </section>

        <!-- ======================= FEATURED COLLECTIONS ======================= -->
        <section class="featured-collections">
            <div class="container">
                <h2 class="section-title">Our Collections</h2>
                <p class="section-subtitle">Crafted from the earth's most precious materials.</p>
                <div class="collections-grid">
                    <div class="collection-item">
                        <img src="https://images.unsplash.com/photo-1620353326231-5a2d6a65529f?ixlib=rb-4.0.3&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=800&h=1000&fit=crop" alt="Diamond Jewelry">
                        <div class="collection-item-content">
                            <h3>The Diamond Edit</h3>
                            <a href="#">Shop Now</a>
                        </div>
                    </div>
                    <div class="collection-item">
                        <img src="https://images.unsplash.com/photo-1617038220319-276d3cfab638?ixlib=rb-4.0.3&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=800&h=1000&fit=crop" alt="Gold Jewelry">
                        <div class="collection-item-content">
                            <h3>The Gold Standard</h3>
                            <a href="#">Shop Now</a>
                        </div>
                    </div>
                    <div class="collection-item">
                        <img src="https://images.unsplash.com/photo-1611591437134-48d6575c3a48?ixlib=rb-4.0.3&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=800&h=1000&fit=crop" alt="Silver Jewelry">
                        <div class="collection-item-content">
                            <h3>The Silver Lining</h3>
                            <a href="#">Shop Now</a>
                        </div>
                    </div>
                </div>
            </div>
        </section>

        <!-- ======================= SIGNATURE PIECE SPOTLIGHT ======================= -->
        <section class="spotlight">
            <div class="container">
                <div class="spotlight-image">
                    <img src="https://images.unsplash.com/photo-1599335623858-622835272313?ixlib=rb-4.0.3&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=800&h=800&fit=crop" alt="Signature Necklace">
                </div>
                <div class="spotlight-content">
                    <h3>Our Signature Piece</h3>
                    <h2>The Lumina Necklace</h2>
                    <p>An icon of modern design. The Lumina Necklace features a flawless, ethically sourced central diamond, embraced by a fluid ribbon of 18k white gold. It is a testament to our unwavering commitment to artistry.</p>
                    <a href="#" class="btn btn-secondary">Discover The Icon</a>
                </div>
            </div>
        </section>
        
        <!-- ======================= BRAND STORY ======================= -->
        <section class="brand-story">
            <div class="container">
                <h2>"Jewelry is a quiet whisper of elegance, a personal story worn for the world to see."</h2>
                <p>Since 1923, Aeterna has been synonymous with exceptional craftsmanship and timeless design. Each piece is born from a legacy of artistry, designed not just to adorn, but to inspire.</p>
            </div>
        </section>

        <!-- ======================= NEWSLETTER SIGNUP ======================= -->
        <section class="newsletter">
            <div class="container">
                <h2>Join The Inner Circle</h2>
                <p>Be the first to discover new collections, exclusive events, and the world of Aeterna.</p>
                <form class="newsletter-form">
                    <input type="email" placeholder="Enter your email address" required>
                    <button type="submit">Subscribe</button>
                </form>
            </div>
        </section>
    </main>

    <!-- ======================= FOOTER ======================= -->
    <footer class="main-footer">
        <div class="container">
            <div class="footer-grid">
                <div class="footer-col">
                    <h4>Aeterna</h4>
                    <p>Timeless elegance, crafted for eternity.</p>
                </div>
                <div class="footer-col">
                    <h4>Shop</h4>
                    <ul>
                        <li><a href="#">New Arrivals</a></li>
                        <li><a href="#">Rings</a></li>
                        <li><a href="#">Necklaces</a></li>
                        <li><a href="#">Bracelets</a></li>
                    </ul>
                </div>
                <div class="footer-col">
                    <h4>About</h4>
                    <ul>
                        <li><a href="#">Our Story</a></li>
                        <li><a href="#">Craftsmanship</a></li>
                        <li><a href="#">Contact Us</a></li>
                        <li><a href="#">Appointments</a></li>
                    </ul>
                </div>
                <div class="footer-col">
                    <h4>Follow Us</h4>
                    <div class="social-links">
                        <a href="#"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9 26.3 26.2 58 34.4 93.9 36.2 37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8z"/></svg></a>
                        <a href="#"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z"/></svg></a>
                        <
This response may be incomplete — the model reached its output limit.

Comments