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

:root {
    --navy: #1a1f3c;
    --gold: #c9a227;
    --cream: #f8f6f1;
    --charcoal: #2d2d2d;
    --silver: #c0c0c0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background-color: var(--navy);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--cream);
    line-height: 1.2;
    letter-spacing: 2px;
}

.logo span {
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--gold);
}

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

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 5%;
    background-color: var(--navy);
    color: var(--cream);
}

.hero-content {
    max-width: 500px;
}

.est {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    color: rgba(248, 246, 241, 0.7);
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--gold);
    color: var(--navy);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #ddb82e;
}

.hero-watch {
    display: flex;
    justify-content: center;
}

.watch {
    position: relative;
    width: 200px;
    height: 280px;
}

.watch-face {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: linear-gradient(145deg, #f5f5f5, #e0e0e0);
    border-radius: 50%;
    border: 8px solid var(--silver);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.watch-dial {
    position: absolute;
    inset: 10px;
    background-color: var(--cream);
    border-radius: 50%;
}

.hour-hand {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 35px;
    background-color: var(--charcoal);
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(30deg);
}

.minute-hand {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 50px;
    background-color: var(--charcoal);
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(120deg);
}

.watch-band {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 60px;
    background: linear-gradient(90deg, #3d2817, #5c3d2a, #3d2817);
    border-radius: 5px;
}

.watch-band.top { top: 0; }
.watch-band.bottom { bottom: 0; }

/* Collection Section */
.collection-section {
    padding: 6rem 5%;
    background-color: var(--cream);
}

.collection-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 3px;
}

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

.watch-card {
    background-color: var(--charcoal);
    color: var(--cream);
    overflow: hidden;
}

.watch-image {
    height: 300px;
}

.woodward { background: linear-gradient(145deg, #2a2a2a, #1a1a1a); }
.corktown { background: linear-gradient(145deg, #333, #222); }
.rouge { background: linear-gradient(145deg, #3a3a3a, #2a2a2a); }

.watch-info {
    padding: 2rem;
}

.series {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
}

.watch-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.watch-info p {
    font-size: 0.9rem;
    color: rgba(248, 246, 241, 0.7);
    margin-bottom: 1rem;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold);
}

/* Heritage Section */
.heritage-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.heritage-image {
    background-color: var(--charcoal);
}

.heritage-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--charcoal), #1a1a1a);
}

.heritage-content {
    padding: 4rem;
    background-color: var(--navy);
    color: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.heritage-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.heritage-content p {
    color: rgba(248, 246, 241, 0.7);
    margin-bottom: 1rem;
    font-weight: 300;
}

.heritage-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(248, 246, 241, 0.6);
}

/* CTA Section */
.cta-section {
    padding: 5rem;
    text-align: center;
    background-color: var(--gold);
    color: var(--navy);
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.cta-content p {
    margin-bottom: 2rem;
}

.cta-button-dark {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--navy);
    color: var(--cream);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.cta-button-dark:hover {
    background-color: #2a3050;
}

/* Footer */
footer {
    padding: 3rem 5%;
    text-align: center;
    background-color: var(--navy);
    color: var(--cream);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

footer p {
    font-size: 0.8rem;
    color: rgba(248, 246, 241, 0.6);
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
    }

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

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

    .heritage-section {
        grid-template-columns: 1fr;
    }

    .heritage-image {
        height: 300px;
    }
}
