:root {
  --primary-bg: #FFFEF9;
  --accent-rose: #D4637C;
  --accent-cocoa: #5C4742;
  --text-primary: #2C2C2C;
  --text-secondary: #6B6B6B;
  --border-light: #E8E8E8;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Arial, sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 254, 249, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1.5rem 5%;
  border-bottom: 1px solid var(--border-light);
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 3rem;
  list-style: none;
}

nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-rose);
  transition: var(--transition);
}

nav a:hover {
  color: var(--accent-rose);
}

nav a:hover::after {
  width: 100%;
}

main {
  margin-top: 80px;
  min-height: calc(100vh - 140px);
}

.hero-slider {
  width: 100%;
  height: 85vh;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-caption {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 254, 249, 0.9);
  padding: 1.5rem 3rem;
  border-radius: 2px;
  text-align: center;
  max-width: 600px;
}

.slide-caption p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}

.section {
  padding: 5rem 10%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 4rem;
  font-size: 1rem;
  line-height: 1.8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  border-radius: 2px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.style-card {
  text-align: center;
}

.style-card h3 {
  font-size: 1.3rem;
  font-weight: 400;
  margin: 1.5rem 0 1rem;
  letter-spacing: 0.5px;
}

.style-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.style-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.style-images img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  transition: var(--transition);
}

.style-images img:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.color-palette {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

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

.color-swatch {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.color-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.outfit-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.outfit-card {
  border: 1px solid var(--border-light);
  padding: 2rem;
  border-radius: 2px;
  transition: var(--transition);
}

.outfit-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

.outfit-card h3 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--accent-cocoa);
}

.outfit-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.outfit-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}

footer {
  text-align: center;
  padding: 2rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-light);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  nav ul {
    gap: 1.5rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .section {
    padding: 3rem 5%;
  }

  .section-title {
    font-size: 2rem;
  }

  .gallery-grid,
  .style-grid,
  .outfit-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-slider {
    height: 60vh;
  }

  .slide-caption {
    padding: 1rem 2rem;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 1rem 3%;
  }

  nav ul {
    gap: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

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