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
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="
Comments