:root {
  --blush-pink: #ffb7c5;
  --soft-pink: #ffd1dc;
  --vibrant-yellow: #f9e45b;
  --amber-glow: #fbd872;
  --deep-rose: #e2725b;
  --golden-touch: #e9b35f;
  --cream-base: #fffaf7;
  --champagne: #fef0e0;
  --luxe-brown: #5e3a2e;
  --text-dark: #2d1f1a;
  --text-soft: #4a3129;
  --white: #ffffff;
  --shadow-soft: 0 10px 30px rgba(226, 114, 91, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --container: 1400px;
}

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

html { scroll-behavior: smooth; }

body {
  background: linear-gradient(145deg, #fff9f5 0%, #fff5ef 100%);
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

body.nav-open {
  overflow: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.serif,
h1, h2, h3,
.logo,
.nav-link,
.collection-title,
.lookbook-quote,
.campaign-title,
.value-badge,
.category-name {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.thin-body {
  font-weight: 300;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.million-badge {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: radial-gradient(circle at 30% 10%, #ffcf9a, #ffb347);
  padding: 10px 20px;
  border-radius: 100px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: #2f1d15;
  z-index: 1000;
  border: 1px solid #ffefb9;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(255, 184, 197, 0.5);
  background: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #e85d75, #f5b042);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--luxe-brown);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #7a4c3c;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #e85d75;
  outline: none;
}

.hero {
  position: relative;
}

.hero-image {
  width: 100%;
  height: 85vh;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.03) contrast(1.03) saturate(1.05);
}

.hero-overlay {
  position: absolute;
  left: 6%;
  bottom: 12%;
  max-width: 560px;
  background: linear-gradient(115deg, rgba(255,215,220,0.92), rgba(253,232,120,0.88));
  padding: 1.75rem 2.4rem;
  border-radius: 32px;
  border-left: 8px solid #f9e45b;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #3a221c;
  line-height: 0.95;
}

.hero-sub {
  margin-top: 0.75rem;
  font-size: 0.86rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b95746;
}

.value-badge {
  display: inline-block;
  margin-top: 1rem;
  background: rgba(255, 217, 102, 0.88);
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #5a2a1e;
}

.section-title {
  position: relative;
  display: inline-block;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  background: linear-gradient(125deg, #e66478, #f3bc5c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 2.8rem 0 1.8rem;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 70%;
  height: 3px;
  background: linear-gradient(90deg, #ffb7c5, #f9e45b);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.6rem;
  margin: 2rem 0 3rem;
}

.category-card,
.product-card {
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-xl);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-card {
  text-align: center;
  border: 1px solid rgba(255, 200, 150, 0.3);
}

.category-card:hover,
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(243, 156, 88, 0.16);
}

.category-img,
.product-card img,
.editorial-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  background: #fcf0e3;
}

.category-name {
  margin-top: 0.8rem;
  font-size: 1.16rem;
  font-weight: 600;
  color: #c85c48;
}

.category-item-count {
  margin-top: 0.3rem;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #f0a25e;
  font-weight: 500;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0 3rem;
}

.product-name {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #4f2c21;
}

.product-price {
  margin-top: 0.3rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #e68a4a;
}

.lookbook-item,
.campaign {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}

.lookbook-item {
  background: #fffaf5;
  border-radius: 48px;
  padding: 1.5rem;
}

.lookbook-item.reverse {
  direction: rtl;
}
.lookbook-item.reverse > * {
  direction: ltr;
}

.editorial-media img {
  aspect-ratio: 3 / 2;
  border-radius: 32px;
}

.lookbook-quote {
  font-size: clamp(1.8rem, 2.3vw, 2.4rem);
  font-weight: 600;
  color: #d1684a;
  line-height: 1.1;
}

.divider {
  height: 2px;
  width: 80px;
  margin: 0.9rem 0;
  border: 0;
  background: linear-gradient(90deg, #ffb7c5, #f9e45b);
}

.campaign {
  margin: 3rem 0;
  background: linear-gradient(125deg, #fff0e2, #fff7e8);
  border-radius: 56px;
  padding: 2.6rem 2.2rem;
}

.campaign-sub {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c06a52;
  font-weight: 700;
}

.campaign-title {
  margin-top: 0.6rem;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, #e05a6f, #f3bc5c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.btn-luxury,
.btn-pink {
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-luxury {
  margin-top: 1.2rem;
  background: #fad974;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.btn-pink {
  margin-top: 1rem;
  background: linear-gradient(95deg, #ffb7c5, #ffd966);
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
}

.btn-luxury:hover,
.btn-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(255, 180, 90, 0.3);
}

.final-cta {
  text-align: center;
  background: linear-gradient(125deg, #ffece0, #fff3e0);
  border-radius: 60px;
  padding: 2rem;
  margin: 3rem 0 4rem;
}

.final-cta .lookbook-quote {
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.tag {
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #4f2c21;
}

.tag.pink { background: #ffb7c5; }
.tag.yellow { background: #f9e45b; }

.mini-gallery {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.mini-gallery img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

footer {
  padding: 2rem;
  background: #fceae7;
  text-align: center;
  border-top: 2px solid #ffe0b5;
}

footer p + p {
  margin-top: 0.6rem;
  letter-spacing: 1px;
}

@media (max-width: 1080px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .lookbook-item,
  .campaign { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.2rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    inset: 72px 16px auto 16px;
    display: grid;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 250, 245, 0.98);
    border: 1px solid rgba(255, 184, 197, 0.5);
    border-radius: 24px;
    box-shadow: 0 16px 30px rgba(0,0,0,0.1);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero-image {
    height: 72vh;
  }

  .hero-overlay {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
    padding: 1.2rem 1.3rem;
  }

  .container {
    padding: 0 1rem;
  }

  .million-badge {
    bottom: 14px;
    right: 14px;
    font-size: 0.72rem;
    padding: 8px 14px;
  }
}

@media (max-width: 640px) {
  .categories-grid,
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .lookbook-item,
  .campaign,
  .final-cta {
    border-radius: 28px;
  }

  .section-title {
    margin-top: 2rem;
  }
}