:root {
    --navy: #1a2a44;
    --gold: #c5a059;
    --grey: #4a4a4a;
    --light-grey: #f4f4f4;
    --white: #ffffff;
}

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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--grey);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--navy);
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--grey);
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--gold);
}

/* Hero */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(26, 42, 68, 0.4), rgba(26, 42, 68, 0.4)), url('https://sc02.alicdn.com/kf/A025866a64e8e4e409554042ebd195419d.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons .btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    margin: 0 10px;
    font-weight: bold;
    display: inline-block;
}

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

.btn.secondary {
    border: 2px solid var(--white);
    color: var(--white);
}

/* Brand Story */
.brand-story {
    padding: 80px 0;
    text-align: center;
    background: var(--light-grey);
}

.brand-story h2 {
    margin-bottom: 20px;
}

.brand-story p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Collections */
.collections {
    padding: 80px 0;
}

.collections h2 {
    text-align: center;
    margin-bottom: 50px;
}

.collection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.collection-card {
    background: var(--white);
    padding: 40px;
    border: 1px solid #eee;
    transition: transform 0.3s;
}

.collection-card:hover {
    transform: translateY(-5px);
}

.collection-card h3 {
    margin-bottom: 15px;
    color: var(--gold);
}

.features {
    margin-top: 20px;
    list-style-type: none;
}

.features li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.features li:before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
}

/* Customization */
.customization {
    padding: 80px 0;
    background: var(--navy);
    color: var(--white);
}

.customization h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
}

.steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 200px;
    padding: 20px;
}

.step span {
    display: block;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

/* Contact */
.contact {
    padding: 80px 0;
}

.contact h2 {
    text-align: center;
    margin-bottom: 40px;
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

input, select, textarea {
    padding: 12px;
    border: 1px solid #ddd;
    width: 100%;
    font-family: inherit;
}

textarea {
    height: 150px;
}

/* Footer */
footer {
    background: #111;
    color: #888;
    text-align: center;
    padding: 40px 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .collection-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    nav ul {
        display: none; /* Mobile menu needed but simplified for static */
    }
}
