
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,600;1,6..96,400&family=Montserrat:wght@300;400;600&display=swap');

:root {
  --bg: #faf9f6;
  --text: #1a1a1a;
  --border: #eaeae5;
  --font-serif: 'Bodoni Moda', serif;
  --font-sans: 'Montserrat', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bg); color: var(--text); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* Nav */
.nav { padding: 30px 0; border-bottom: 1px solid var(--border); }
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 30px; }
.logo { font-family: var(--font-serif); font-size: 1.5rem; letter-spacing: 2px; }
.logo span { color: #888; font-weight: 300; }
.nav-links { display: flex; gap: 40px; }
.nav-links a { text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; font-weight: 600; color: #777; transition: color 0.3s; }
.nav-links a:hover { color: var(--text); }

/* Editorial Slider index */
.slider-wrapper { height: 75vh; position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.slide { width: 100%; height: 100%; background-position: center; background-size: cover; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; }
.slide-content { max-width: 700px; padding: 0 20px; }
.collection-year { font-size: 0.85rem; letter-spacing: 3px; font-weight: 600; display: block; margin-bottom: 20px; }
.slide-content h1 { font-family: var(--font-serif); font-size: clamp(3rem, 6vw, 5rem); font-weight: 400; line-height: 1.1; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.slide-content p { font-size: 1.1rem; font-weight: 300; margin-bottom: 40px; }
.btn-link { font-family: var(--font-serif); font-style: italic; font-size: 1.3rem; border-bottom: 1.5px solid #fff; padding-bottom: 5px; }

/* Lookbook Grid */
.page-content { padding: 80px 0 120px; }
.page-title { font-family: var(--font-serif); font-size: 3rem; font-weight: 400; text-align: center; margin-bottom: 60px; }
.lookbook-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.lookbook-item img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border: 1px solid var(--border); }
.caption { display: block; margin-top: 15px; text-align: center; font-size: 0.85rem; letter-spacing: 1px; color: #666; text-transform: uppercase; }

/* About philosophie */
.about-wrapper { max-width: 700px; margin: 0 auto; text-align: center; }
.intro-text { font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; line-height: 1.6; margin-bottom: 40px; color: #444; }
.about-wrapper p { line-height: 1.8; color: #666; margin-bottom: 25px; }

/* Contact Form */
.form-container { max-width: 600px; margin: 0 auto; }
.editorial-form { display: flex; flex-direction: column; gap: 20px; }
.editorial-form input, .editorial-form textarea { width: 100%; padding: 16px; border: 1px solid var(--border); background: #fff; font-family: inherit; font-size: 0.95rem; outline: none; }
.editorial-form input:focus, .editorial-form textarea:focus { border-color: var(--text); }
.submit-btn { padding: 18px; background: var(--text); color: #fff; font-family: var(--font-serif); text-transform: uppercase; font-size: 0.9rem; letter-spacing: 2px; border: none; cursor: pointer; transition: opacity 0.3s; }
.submit-btn:hover { opacity: 0.9; }

.footer { padding: 60px 0; text-align: center; color: #888; font-size: 0.85rem; border-top: 1px solid var(--border); }

@media (max-width: 768px) {
  .nav-container { flex-direction: column; gap: 20px; }
  .lookbook-grid { grid-template-columns: 1fr; }
}
  