:root {
    --bg-color: #F9F7F2;
    --text-color: #1A1A1A;
    --gold: #D4AF37;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.8;
}

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

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

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 5px;
    color: var(--gold);
}

.nav {
    display: flex;
    gap: 50px;
}

.nav a {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

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

/* Hero */
.hero {
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background: rgba(0,0,0,0.6);
    padding: 60px;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.btn-outline {
    display: inline-block;
    border: 1px solid #fff;
    padding: 15px 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
    color: var(--gold);
    letter-spacing: 2px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.collection-item {
    text-align: center;
}

.collection-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 30px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.item-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.item-info p {
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.item-info .link {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 5px;
    cursor: pointer;
}

/* Craft */
.craft {
    padding: 100px 0;
    background: #fff;
}

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

.craft-text {
    padding: 0 40px;
}

.craft-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--gold);
}

.craft-text p {
    color: #444;
    margin-bottom: 30px;
}

.craft-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Contact */
.contact {
    padding: 120px 0;
    text-align: center;
}

.boutiques-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.boutique h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.boutique p {
    margin-bottom: 5px;
    color: #555;
}

/* Footer */
.footer {
    padding: 40px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.8rem;
    color: #888;
}

/* Responsive */
@media (max-width: 900px) {
    .collection-grid { grid-template-columns: 1fr; }
    .craft-container { grid-template-columns: 1fr; }
    .boutiques-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-content h1 { font-size: 3rem; }
    .nav { display: none; }
}
