:root {
  --bg: #fffafc;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-soft: #fff3f7;
  --text: #352833;
  --muted: #7d6674;
  --accent: #eb6f9d;
  --accent-deep: #d34f81;
  --accent-soft: #ffd8e5;
  --border: rgba(173, 108, 137, 0.18);
  --shadow: 0 18px 40px rgba(161, 98, 128, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 216, 230, 0.65), transparent 28%),
    linear-gradient(180deg, #fffdfd 0%, var(--bg) 58%, #fff6fa 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(255, 250, 252, 0.84);
  border-bottom: 1px solid rgba(173, 108, 137, 0.1);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  color: var(--muted);
}

.site-nav a.active,
.site-nav a:hover,
.catalog-meta a:hover,
.site-footer a:hover {
  color: var(--accent-deep);
}

.listing-hero {
  padding: 4rem 0 2rem;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: end;
}

.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-deep);
}

.hero-copy h1,
.promo-banner h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}

.hero-copy p:last-child,
.catalog-body p,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 0.85rem;
}

.note-pill,
.category-strip span {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(161, 98, 128, 0.08);
  color: var(--muted);
  font-weight: 600;
}

.category-section {
  padding: 0.5rem 0 1.5rem;
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.catalog-section {
  padding: 1rem 0 4rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.catalog-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(161, 98, 128, 0.16);
}

.catalog-image {
  min-height: 230px;
}

.tone-1 { background: linear-gradient(135deg, #ffd8e6, #f7a8c6); }
.tone-2 { background: linear-gradient(135deg, #fff0f5, #efc8d8); }
.tone-3 { background: linear-gradient(135deg, #fdeef2, #f0bfd0); }
.tone-4 { background: linear-gradient(135deg, #facad8, #ea8caf); }
.tone-5 { background: linear-gradient(135deg, #f8dfe8, #eab2c7); }
.tone-6 { background: linear-gradient(135deg, #fff4f7, #f4d8e0); }
.tone-7 { background: linear-gradient(135deg, #ffe3ec, #f1bbcf); }
.tone-8 { background: linear-gradient(135deg, #f9d0dd, #e88bae); }
.tone-9 { background: linear-gradient(135deg, #ffe9f1, #f2bdd0); }
.tone-10 { background: linear-gradient(135deg, #fbe8ef, #efcad8); }
.tone-11 { background: linear-gradient(135deg, #fff1f6, #f0cedd); }
.tone-12 { background: linear-gradient(135deg, #f7bfd1, #df6b95); }

.catalog-body {
  padding: 1.25rem;
}

.catalog-body h2,
.site-footer h3 {
  margin: 0 0 0.75rem;
  font-size: 1.08rem;
}

.catalog-body p {
  margin: 0;
}

.catalog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.catalog-meta span {
  font-weight: 800;
}

.catalog-meta a {
  color: var(--accent-deep);
  font-weight: 700;
}

.promo-section {
  padding: 0 0 4rem;
}

.promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 235, 242, 0.96), rgba(255, 247, 250, 0.94)),
    var(--surface-soft);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.promo-banner h2 {
  max-width: 16ch;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.promo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #f38bb4 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(223, 98, 148, 0.22);
}

.site-footer {
  padding: 2rem 0 3rem;
  background: rgba(255, 244, 248, 0.78);
  border-top: 1px solid rgba(173, 108, 137, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 1.2rem;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 0.5rem;
}

@media (max-width: 920px) {
  .hero-shell,
  .catalog-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .promo-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .nav-bar,
  .hero-shell,
  .catalog-grid,
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-nav {
    gap: 0.75rem 1rem;
  }

  .listing-hero {
    padding-top: 3rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 11vw, 3.8rem);
  }

  .hero-note {
    justify-content: start;
  }
}
