<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Your Brand Name</title>
<link rel="stylesheet" href="styles.css">
<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=Playfair+Display:wght@400;500&family=Inter:wght@300;400;500&display=swap" rel="stylesheet">
</head>
<body>
<header class="header">
<div class="logo">YOUR BRAND</div>
<nav>
<a href="#collections">Collections</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section class="hero">
<div class="hero-text">
<h1>Fine jewelry, refined.</h1>
<p>Thoughtfully designed pieces crafted to last.</p>
</div>
</section>
<section id="collections" class="collections">
<h2>Collections</h2>
<div class="grid">
<div class="card">
<img src="images/hero.jpg" alt="Collection 1">
<span>Signature</span>
</div>
<div class="card">
<img src="images/hero.jpg" alt="Collection 2">
<span>Essentials</span>
</div>
<div class="card">
<img src="images/hero.jpg" alt="Collection 3">
<span>Limited</span>
</div>
</div>
</section>
<section id="about" class="about">
<h2>Our Story</h2>
<p>
We create understated jewelry designed to be worn every day.
Each piece balances craftsmanship, simplicity, and timeless form.
</p>
</section>
<section id="contact" class="contact">
<h2>Contact</h2>
<p>Inquiries & custom requests</p>
<a href="mailto:hello@yourbrand.com" class="button">Email Us</a>
</section>
<footer class="footer">
<p>© 2026 Your Brand Name</p>
</footer>
</body>
</html>