:root {
  --bg: #f9f1eb;
  --bg-soft: #fff8f4;
  --paper: rgba(255, 250, 246, 0.82);
  --paper-strong: rgba(255, 252, 249, 0.94);
  --ink: #2d1821;
  --muted: #6f5860;
  --rose: #be587d;
  --rose-deep: #7f2d4d;
  --blush: #f5d4de;
  --gold: #d4ab7d;
  --line: rgba(65, 30, 44, 0.12);
  --shadow: 0 26px 80px rgba(85, 34, 54, 0.12);
  --heading: "Cormorant Garamond", "Times New Roman", serif;
  --body: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.site-body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  background:
    radial-gradient(circle at top left, rgba(190, 88, 125, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(212, 171, 125, 0.22), transparent 28%),
    linear-gradient(180deg, #fffaf7 0%, #f8efea 45%, #f4e6de 100%);
}

body.site-body::before,
body.site-body::after {
  content: "";
  position: fixed;
  z-index: 0;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.28;
  pointer-events: none;
}

body.site-body::before {
  top: 80px;
  left: -140px;
  background: rgba(190, 88, 125, 0.42);
}

body.site-body::after {
  right: -120px;
  bottom: 120px;
  background: rgba(212, 171, 125, 0.4);
}

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

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

.site-shell {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px 56px;
}

.top-ribbon {
  display: flex;
  justify-content: center;
  padding: 12px 18px;
  background: rgba(45, 24, 33, 0.94);
  color: #fff4f7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 18px;
}

.brand-lockup {
  display: grid;
  gap: 6px;
}

.brand-mark {
  color: var(--rose-deep);
  font-family: var(--heading);
  font-size: 15px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.brand-name {
  font-family: var(--heading);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  line-height: 0.96;
}

.brand-tagline {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.header-nav a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.header-nav a:hover {
  color: var(--rose-deep);
  border-color: rgba(127, 45, 77, 0.38);
}

.hero-grid,
.feature-grid,
.editorial-grid,
.shop-grid,
.article-grid,
.metric-grid,
.note-grid,
.related-grid {
  display: grid;
  gap: 22px;
}

.hero-panel,
.showcase-card,
.feature-card,
.editorial-card,
.shop-section,
.shop-card,
.article-main,
.article-aside,
.metric-card,
.article-block,
.related-card,
.footer-panel {
  border: 1px solid var(--line);
  background: var(--paper);
  backdrop-filter: blur(18px);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero-panel,
.editorial-card,
.feature-card,
.shop-section,
.article-main,
.article-aside,
.related-card,
.footer-panel {
  padding: 28px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 20px auto auto 20px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(190, 88, 125, 0.14);
  border-radius: 28px;
  transform: rotate(13deg);
}

.eyebrow,
.section-kicker,
.card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(190, 88, 125, 0.11);
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title,
.section-title,
.article-title,
.feature-title,
.editorial-title,
.shop-title,
.footer-title {
  margin: 16px 0 0;
  font-family: var(--heading);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.hero-title {
  font-size: clamp(52px, 7vw, 94px);
  max-width: 780px;
}

.section-title,
.article-title {
  font-size: clamp(36px, 4.6vw, 62px);
}

.feature-title,
.editorial-title,
.shop-title,
.footer-title {
  font-size: clamp(28px, 3vw, 42px);
}

.hero-copy,
.section-copy,
.feature-copy,
.editorial-copy,
.card-note,
.article-copy,
.footer-copy,
.note-list,
.related-copy,
.product-meta,
.disclosure,
.metric-copy {
  color: var(--muted);
  line-height: 1.8;
}

.hero-copy {
  max-width: 640px;
  font-size: 17px;
}

.hero-actions,
.meta-row,
.button-row,
.chip-row,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff;
  box-shadow: 0 18px 38px rgba(127, 45, 77, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(127, 45, 77, 0.18);
  color: var(--ink);
}

.meta-row {
  margin-top: 20px;
}

.meta-card {
  flex: 1 1 160px;
  min-width: 150px;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(65, 30, 44, 0.1);
}

.meta-label {
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.meta-value {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 700;
}

.showcase-card {
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: 20px;
}

.showcase-frame,
.card-image-frame,
.aside-image,
.article-hero-image {
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at top, rgba(212, 171, 125, 0.28), transparent 42%),
    linear-gradient(180deg, #fffaf7 0%, #f6ece6 100%);
}

.showcase-frame,
.article-hero-image {
  padding: 24px;
}

.showcase-frame img {
  max-height: 460px;
  object-fit: contain;
  margin: 0 auto;
}

.product-name {
  margin: 8px 0 0;
  font-family: var(--heading);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 0.94;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(127, 45, 77, 0.08);
  color: var(--rose-deep);
  font-size: 12px;
  font-weight: 700;
}

.section {
  margin-top: 28px;
}

.section-header {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  display: grid;
  gap: 12px;
}

.feature-index {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(190, 88, 125, 0.12);
  color: var(--rose-deep);
  font-weight: 800;
}

.editorial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.editorial-card {
  display: grid;
  gap: 14px;
}

.editorial-card.featured {
  background:
    linear-gradient(135deg, rgba(127, 45, 77, 0.92), rgba(190, 88, 125, 0.9)),
    linear-gradient(180deg, #7f2d4d, #be587d);
  color: #fff;
}

.editorial-card.featured .editorial-copy,
.editorial-card.featured .product-meta,
.editorial-card.featured .disclosure {
  color: rgba(255, 243, 247, 0.84);
}

.editorial-card.featured .section-kicker {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.editorial-media,
.card-image-frame,
.aside-image {
  padding: 18px;
}

.editorial-media img,
.card-image-frame img,
.aside-image img,
.article-hero-image img {
  max-height: 300px;
  object-fit: contain;
  margin: 0 auto;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 14px;
}

.shop-section {
  display: grid;
  gap: 20px;
}

.shop-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-image-frame {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  padding: 22px 20px 16px;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.card-title {
  margin: 0;
  font-family: var(--heading);
  font-size: 30px;
  line-height: 0.98;
}

.card-note {
  margin: 0;
  font-size: 14px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 6px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  box-shadow: 0 14px 30px rgba(127, 45, 77, 0.18);
  color: #fff;
  flex: 1 1 170px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-link:hover {
  transform: translateY(-1px);
}

.card-actions .card-link + .card-link {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(127, 45, 77, 0.18);
  box-shadow: none;
  color: var(--rose-deep);
}

.card-image-frame img {
  width: 100%;
  max-width: 250px;
  height: 250px;
  object-fit: contain;
}

.article-grid {
  align-items: start;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.article-main {
  display: grid;
  gap: 22px;
}

.article-aside {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 18px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rose-deep);
  font-size: 14px;
  font-weight: 700;
}

.article-hero-image {
  padding: 28px;
}

.article-hero-image img {
  max-height: 520px;
}

.metric-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric-card {
  padding: 18px;
  background: var(--paper-strong);
}

.metric-card strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
}

.article-block {
  padding: 22px;
  background: var(--paper-strong);
}

.article-block h2,
.article-block h3,
.article-aside h2 {
  margin: 0 0 12px;
  font-family: var(--heading);
  font-size: 34px;
  line-height: 0.98;
}

.article-block h3 {
  font-size: 24px;
}

.note-list {
  margin: 0;
  padding-left: 20px;
}

.note-list li + li {
  margin-top: 10px;
}

.note-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.note-card {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(65, 30, 44, 0.1);
}

.note-card h3 {
  margin: 0 0 10px;
  font-family: var(--heading);
  font-size: 28px;
}

.aside-image img {
  max-height: 320px;
}

.related-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.related-card {
  display: grid;
  gap: 10px;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(65, 30, 44, 0.16), transparent);
}

.footer-panel {
  margin-top: 30px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.disclosure-box {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(65, 30, 44, 0.1);
}

@keyframes floatCard {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-6px);
  }
}

.showcase-card,
.editorial-card.featured {
  animation: floatCard 4.8s ease-in-out infinite alternate;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  }
}

@media (max-width: 1024px) {
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 899px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-grid,
  .editorial-grid,
  .article-grid,
  .metric-grid,
  .note-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-shell {
    padding: 0 14px 44px;
  }

  .hero-panel,
  .showcase-card,
  .feature-card,
  .editorial-card,
  .shop-section,
  .shop-card,
  .article-main,
  .article-aside,
  .metric-card,
  .article-block,
  .related-card,
  .footer-panel {
    padding: 20px;
  }

  .hero-title {
    font-size: 46px;
  }

  .brand-name {
    font-size: 30px;
  }

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

  .product-name {
    font-size: 34px;
  }

  .card-title {
    font-size: 28px;
  }

  .article-block h2,
  .article-aside h2 {
    font-size: 28px;
  }

  .card-image-frame {
    min-height: 240px;
    padding: 18px 16px 14px;
  }

  .card-image-frame img {
    max-width: 220px;
    height: 210px;
  }

  .card-link {
    flex-basis: 100%;
  }
}
