/* Detail + Shop pages */
.detail-hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  background:
    radial-gradient(70% 90% at 85% 0%, rgba(232, 93, 28, 0.22), transparent 55%),
    var(--ink);
  color: var(--text-on-dark);
  overflow: hidden;
}
.detail-hero .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted-dark);
  margin-bottom: 1.25rem;
}
.detail-hero .breadcrumb a:hover { color: var(--gold-soft); }
.detail-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  max-width: 16ch;
}
.detail-hero .lead { color: var(--text-muted-dark); margin-top: 1rem; }

.detail-layout {
  display: grid;
  gap: 2rem;
}
@media (min-width: 920px) {
  .detail-layout { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
}
.detail-panel {
  background: var(--glass);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--glass-shadow);
}
.detail-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 0.75rem;
}
.detail-panel p { color: var(--text-soft); margin-bottom: 0.9rem; }
.detail-list {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 1.5rem;
}
.detail-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ember);
}
.sticky-cta {
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}
.sticky-cta .price-note {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin: 0.75rem 0 1.1rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.feature-tile {
  border-radius: 20px;
  padding: 1.25rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: transform 0.35s var(--ease);
}
.feature-tile:hover { transform: translateY(-4px); }
.feature-tile strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}
.feature-tile p { font-size: 0.9rem; color: var(--text-soft); margin: 0; }

/* Shop */
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.shop-filters button {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.25s;
}
.shop-filters button.active,
.shop-filters button:hover {
  background: linear-gradient(135deg, #ff7a2f, #b01f1f);
  border-color: transparent;
  color: #fff;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
}
.shop-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .shop-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .shop-grid-3 {
    grid-template-columns: 1fr;
  }
}
.product-card {
  border-radius: 24px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: none;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(176, 31, 31, 0.16);
}
.product-media {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 70% 30%, rgba(232, 93, 28, 0.2), transparent 50%),
    linear-gradient(160deg, #2a1418, #0e0708);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.product-media .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card:hover .product-media .product-img {
  transform: scale(1.06);
}
.product-media .gem {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35), inset 0 0 20px rgba(255,255,255,0.25);
  transition: transform 0.5s var(--ease);
}
.product-card:hover .gem { transform: scale(1.1) rotate(8deg); }
.product-media .bead {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #8b5a2b, #3b2410 70%);
  box-shadow: 0 10px 28px rgba(0,0,0,0.4), inset 0 0 12px rgba(255,220,160,0.2);
  position: relative;
}
.product-media .bead::after {
  content: attr(data-mukhi);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #f0d9a0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
}
.product-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(14,7,8,0.75);
  color: #f0d9a0;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(240,217,160,0.25);
}
.product-body {
  padding: 1.15rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-body .planet {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 0.35rem;
}
.product-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.15;
  margin-bottom: 0.4rem;
}
.product-body p {
  font-size: 0.9rem;
  color: var(--text-soft);
  flex: 1;
  margin-bottom: 1rem;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.85rem;
}
.product-meta .ask {
  font-weight: 700;
  color: var(--ember);
}
.product-meta .muted { color: var(--text-soft); opacity: 0.85; }
.btn-enquire {
  width: 100%;
  justify-content: center;
}

.mega-links {
  display: none;
}
@media (min-width: 1100px) {
  .nav-links .has-mega { position: relative; }
  .nav-links .has-mega > a::after {
    content: " ?";
    font-size: 0.7em;
    opacity: 0.7;
  }
  .mega-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    padding: 0.65rem;
    background: rgba(14, 7, 8, 0.96);
    border: 1px solid rgba(240, 217, 160, 0.18);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    flex-direction: column;
    gap: 0.15rem;
    z-index: 80;
  }
  html[data-theme="light"] .mega-links {
    background: rgba(255,255,255,0.98);
    border-color: rgba(176,31,31,0.12);
  }
  .nav-links .has-mega:hover .mega-links,
  .nav-links .has-mega:focus-within .mega-links {
    display: flex;
  }
  .mega-links a {
    padding: 0.55rem 0.75rem !important;
    border-radius: 8px;
    border-bottom: none !important;
    white-space: nowrap;
  }
  .mega-links a:hover { background: rgba(232, 93, 28, 0.12); }
}
@media (max-width: 1099px) {
  .mega-links {
    display: flex;
    flex-direction: column;
    padding-left: 0.75rem;
  }
  .mega-links a {
    font-size: 0.88rem !important;
    opacity: 0.9;
  }
}

.related-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.related-strip a {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  font-weight: 700;
  transition: 0.3s;
}
.related-strip a:hover {
  border-color: rgba(232, 93, 28, 0.45);
  transform: translateY(-3px);
}
.related-strip small {
  display: block;
  font-weight: 500;
  color: var(--text-soft);
  margin-top: 0.25rem;
  font-size: 0.8rem;
}
/* Home featured services � second section */
.home-services {
  position: relative;
  padding: clamp(4.25rem, 8vw, 6.5rem) 0;
  background:
    radial-gradient(70% 80% at 100% 0%, rgba(232, 93, 28, 0.08), transparent 50%),
    radial-gradient(50% 60% at 0% 100%, rgba(176, 31, 31, 0.07), transparent 50%),
    var(--sand);
}
html[data-theme="dark"] .home-services {
  background:
    radial-gradient(70% 80% at 100% 0%, rgba(232, 93, 28, 0.12), transparent 50%),
    radial-gradient(50% 60% at 0% 100%, rgba(176, 31, 31, 0.1), transparent 50%),
    #10080a;
}
.home-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
@media (max-width: 900px) {
  .home-svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .home-svc-grid { grid-template-columns: 1fr; }
}
.home-svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  border-radius: 24px;
  background: var(--glass);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
  text-decoration: none;
  color: inherit;
}
.home-svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255,122,47,0.5), transparent 42%, rgba(212,168,75,0.35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 2;
}
.home-svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(176, 31, 31, 0.16);
  border-color: rgba(232, 93, 28, 0.35);
}
.home-svc-card:hover::before { opacity: 1; }

/* Image media — replaces icons */
.home-svc-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #14090b;
}
.home-svc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-svc-card:hover .home-svc-media img { transform: scale(1.06); }
.home-svc-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(14, 7, 8, 0.55) 100%);
  pointer-events: none;
}
.home-svc-media .num {
  position: absolute;
  left: 0.95rem;
  bottom: 0.85rem;
  z-index: 1;
  margin: 0;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(14, 7, 8, 0.72);
  border: 1px solid rgba(240, 217, 160, 0.3);
  color: #f0d9a0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.home-svc-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.2rem 1.3rem 1.35rem;
}
.home-svc-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.45rem;
}
.home-svc-card p {
  font-size: 0.92rem;
  color: var(--text-soft);
  flex: 1;
  margin: 0 0 1.1rem;
  line-height: 1.55;
}
.home-svc-card .go {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ember);
}
html[data-theme="dark"] .home-svc-card.has-img h3 { color: #fff6ee; }
html[data-theme="dark"] .home-svc-card.has-img p { color: rgba(255, 246, 238, 0.68); }
html[data-theme="dark"] .home-svc-card.has-img .go { color: #f0d9a0; }

.home-svc-foot {
  margin-top: 2rem;
  text-align: center;
}

/* Equal services grid + CTA card */
.home-svc-grid-equal {
  grid-template-columns: repeat(3, 1fr);
}
.home-svc-grid-equal .home-svc-card.featured,
.home-svc-grid-equal .home-svc-card {
  grid-row: auto;
  min-height: 0;
}
.home-svc-cta {
  background: linear-gradient(160deg, rgba(232, 93, 28, 0.14), rgba(14, 7, 8, 0.96)) !important;
  border-color: rgba(255, 122, 47, 0.4) !important;
  color: #f7efe8 !important;
}
.home-svc-cta h3 { color: #fff !important; }
.home-svc-cta p { color: #c9b4ab !important; }
.home-svc-cta .go { color: #f0d9a0 !important; }
@media (max-width: 900px) {
  .home-svc-grid-equal { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .home-svc-grid-equal { grid-template-columns: 1fr; }
}

body[data-page="services"] .page-hero {
  text-align: center;
  padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
body[data-page="services"] .page-hero .title-block {
  margin-inline: auto;
}
body[data-page="services"] .page-hero .title-main {
  background: linear-gradient(180deg, #fff6ee 10%, #f0d9a0 55%, #ff8a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-svc-assurance {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  padding: clamp(1.35rem, 2.5vw, 2rem);
  overflow: hidden;
  border: 1px solid rgba(240, 217, 160, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 50%, rgba(232, 93, 28, 0.18), transparent 28%),
    linear-gradient(115deg, rgba(45, 18, 22, 0.96), rgba(14, 7, 8, 0.98));
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
}
.home-svc-assurance::after {
  content: "";
  position: absolute;
  right: -4rem;
  top: -6rem;
  width: 15rem;
  height: 15rem;
  border: 1px solid rgba(240, 217, 160, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 2.5rem rgba(240, 217, 160, 0.025),
    0 0 0 5rem rgba(232, 93, 28, 0.02);
  pointer-events: none;
}
.svc-assurance-mark {
  position: relative;
  z-index: 1;
  width: clamp(58px, 7vw, 74px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 217, 160, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  color: #f0d9a0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  box-shadow: inset 0 0 24px rgba(232, 93, 28, 0.12);
}
.svc-assurance-copy {
  position: relative;
  z-index: 1;
}
.svc-assurance-copy > span {
  display: block;
  margin-bottom: 0.25rem;
  color: #e85d1c;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.svc-assurance-copy h3 {
  margin: 0 0 0.3rem;
  color: #fff6ee;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.15;
}
.svc-assurance-copy p {
  max-width: 40rem;
  margin: 0;
  color: #c9b4ab;
  font-size: 0.9rem;
  line-height: 1.6;
}
.svc-assurance-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
}
.svc-all-link {
  color: #f0d9a0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.svc-all-link span {
  display: inline-block;
  transition: transform 0.2s ease;
}
.svc-all-link:hover span { transform: translateX(4px); }
@media (max-width: 850px) {
  .home-svc-assurance {
    grid-template-columns: auto 1fr;
  }
  .svc-assurance-actions {
    grid-column: 1 / -1;
    width: 100%;
  }
}
@media (max-width: 560px) {
  .home-svc-assurance {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .svc-assurance-mark { margin-inline: auto; }
  .svc-assurance-actions .btn { width: 100%; }
}

/* Why band */
.why-band { padding-top: clamp(3.5rem, 7vw, 5rem); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
@media (max-width: 760px) {
  .why-grid { grid-template-columns: 1fr; }
}
.why-card {
  padding: 1.75rem 1.4rem;
  border-radius: 22px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  text-align: center;
}
.why-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}
.why-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* Shop spotlight */
.shop-spot {
  background:
    radial-gradient(60% 70% at 50% 0%, rgba(232, 93, 28, 0.08), transparent 55%),
    var(--sand);
}
html[data-theme="dark"] .shop-spot {
  background:
    radial-gradient(60% 70% at 50% 0%, rgba(232, 93, 28, 0.12), transparent 55%),
    #10080a;
}
.spot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 700px) {
  .spot-grid { grid-template-columns: 1fr; }
}
.spot-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border-radius: 24px;
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  min-height: 200px;
}
@media (max-width: 560px) {
  .spot-card { grid-template-columns: 1fr; }
}
.spot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 55px rgba(176, 31, 31, 0.16);
}
.spot-visual {
  display: grid;
  place-items: center;
  min-height: 180px;
}
.gems-bg {
  background: radial-gradient(circle at 40% 40%, rgba(255,122,47,0.45), #1a0c0e 70%);
}
.rudra-bg {
  background: radial-gradient(circle at 40% 40%, rgba(139,90,43,0.5), #1a0c0e 70%);
}
.gem-orb {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ff8a5c, #9b1028 70%);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35), inset 0 0 18px rgba(255,255,255,0.25);
}
.bead-orb {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #8b5a2b, #3b2410 70%);
  box-shadow: 0 10px 28px rgba(0,0,0,0.4);
  position: relative;
}
.bead-orb::after {
  content: attr(data-mukhi);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #f0d9a0;
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.spot-body {
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spot-body h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}
.spot-body p {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}
.spot-body .go {
  font-weight: 700;
  color: var(--ember);
}

/* Premium section title block (home second section) */
.title-block {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto clamp(2.75rem, 5.5vw, 3.75rem);
  position: relative;
}
.title-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}
.title-ornament .line {
  width: min(72px, 18vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 93, 28, 0.75), transparent);
}
.title-ornament .diamond {
  width: 9px;
  height: 9px;
  border: 1.5px solid var(--ember);
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(232, 93, 28, 0.45);
  background: rgba(232, 93, 28, 0.2);
}
.title-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto 1rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  background: rgba(232, 93, 28, 0.1);
  border: 1px solid rgba(232, 93, 28, 0.28);
}
html[data-theme="dark"] .title-kicker {
  color: #f0d9a0;
  background: rgba(240, 217, 160, 0.08);
  border-color: rgba(240, 217, 160, 0.22);
}
.title-main {
  font-size: clamp(2.35rem, 5vw, 3.6rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
html[data-theme="dark"] .title-main { color: #f7efe8; }
.title-main em {
  font-style: italic;
  background: linear-gradient(120deg, #ff8a3d, #c41e1e 55%, #d4a84b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.title-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-soft);
  max-width: 32rem;
  margin: 0 auto 1.35rem;
  line-height: 1.65;
}
.title-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}
.title-pills span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  color: var(--text-soft);
  border: 1px solid var(--glass-border);
  background: var(--glass);
}
html[data-theme="dark"] .title-pills span {
  color: #c9b4ab;
  border-color: rgba(240, 217, 160, 0.14);
}

/* Inner page hero titles � premium */
.page-hero {
  text-align: center;
}
.page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-hero .breadcrumb {
  justify-content: center;
}
.detail-hero {
  text-align: center;
}
.detail-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.detail-hero .breadcrumb {
  justify-content: center;
}
.detail-hero h1,
.page-hero h1 {
  background: linear-gradient(180deg, #fff6ee 10%, #f0d9a0 55%, #ff8a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  max-width: 16ch;
}
.detail-hero .lead,
.page-hero .lead {
  margin-inline: auto;
}
