/**
 * Contact & Shop: same palette + components as home_jewelry (jewelry-home.css),
 * but distinct layouts — not a copy of the full ring hero.
 */
.jewelry-site {
  --jewelry-gold: #c8a45a;
  --jewelry-ink: #0d0d10;
  --jewelry-ink-2: #17171c;
  --jewelry-muted: rgba(13, 13, 16, 0.72);
  --jewelry-soft: #f6f2ea;
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #111;
  background: #fff;
}

.jewelry-site a {
  color: inherit;
}

/* Shared compact hero: pulls under nav; with top promo, also under promo row (body.has-top-promo). */
.jewelry-page-hero {
  position: relative;
  margin-top: calc(-1 * var(--site-navbar-row-height, 58px));
  padding-top: calc(var(--site-navbar-row-height, 58px) + clamp(2.25rem, 7vw, 3.75rem));
  padding-bottom: clamp(2.25rem, 5vw, 3.5rem);
  color: #fff;
  overflow: hidden;
}

body.has-top-promo .jewelry-page-hero {
  margin-top: calc(-1 * (var(--site-navbar-row-height, 58px) + var(--site-promo-banner-height, 48px)));
  padding-top: calc(var(--site-navbar-row-height, 58px) + var(--site-promo-banner-height, 48px) + clamp(2.25rem, 7vw, 3.75rem));
}

.jewelry-page-hero__label {
  margin: 0 0 12px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(200, 164, 90, 0.95);
}

.jewelry-page-hero__title {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.08;
}

.jewelry-page-hero__lead {
  margin: 16px 0 0;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  font-size: 15px;
}

.jewelry-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  justify-content: center;
}

/* Contact: centered, invitation / letter feel */
.jewelry-page-hero--contact {
  background: linear-gradient(168deg, #14141c 0%, #0b0b0f 42%, #100e14 100%);
  text-align: center;
}

.jewelry-page-hero--contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(160px, 40vw);
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--jewelry-gold), transparent);
  opacity: 0.85;
}

.jewelry-page-hero--contact .jewelry-page-hero__lead {
  margin-left: auto;
  margin-right: auto;
}

.jewelry-page-hero--contact .jewelry-page-hero__actions {
  justify-content: center;
}

.jewelry-page-hero__icon-ring {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 999px;
  border: 1px solid rgba(200, 164, 90, 0.45);
  background: rgba(200, 164, 90, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jewelry-gold);
  font-size: 22px;
}

/* Shop: editorial / catalog band — asymmetric */
.jewelry-page-hero--shop {
  background: #0b0b0f;
  border-bottom: 1px solid rgba(200, 164, 90, 0.18);
}

.jewelry-page-hero--shop .jewelry-page-hero__lead {
  max-width: 48ch;
}

.jewelry-page-hero__shop-row {
  align-items: flex-end;
}

.jewelry-page-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  margin-bottom: 14px;
}

@media (max-width: 991px) {
  .jewelry-page-hero__badges {
    justify-content: flex-start;
  }
}

.jewelry-page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.jewelry-page-hero__badge i {
  color: var(--jewelry-gold);
  font-size: 13px;
}

.jewelry-page-hero--shop .jewelry-page-hero__actions {
  justify-content: flex-end;
  margin-top: 0;
}

@media (max-width: 991px) {
  .jewelry-page-hero--shop .jewelry-page-hero__actions {
    justify-content: flex-start;
    margin-top: 18px;
  }
}
