.site-shell {
  position: relative;
  isolation: isolate;
}

.sticky-nav {
  transition: background-color 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.sticky-nav.scrolled {
  background: rgba(9, 13, 21, 0.85);
  backdrop-filter: blur(14px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.35);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(8, 11, 18, 0.7)),
    radial-gradient(circle at 20% 0, rgba(200, 169, 107, 0.2), transparent 20rem);
}

.dropcap:first-letter {
  float: left;
  font-family: "Playfair Display", serif;
  font-size: 3.6rem;
  line-height: 0.8;
  margin-right: 0.55rem;
  margin-top: 0.4rem;
  color: var(--gold);
}

.prose-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 169, 107, 0.72), transparent);
}

.pull-quote {
  border-left: 2px solid rgba(200, 169, 107, 0.75);
  padding-left: 1rem;
}

.insight-chip {
  border: 1px solid rgba(200, 169, 107, 0.45);
  background: rgba(200, 169, 107, 0.1);
}

.glass-quote {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 10% 0, rgba(200, 169, 107, 0.16), transparent 14rem),
    linear-gradient(130deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
}

.image-break {
  position: relative;
  overflow: hidden;
}

.image-break img {
  transform: scale(1.02);
  transition: transform 1.3s ease;
}

.image-break:hover img {
  transform: scale(1.08);
}

.image-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 0, rgba(200, 169, 107, 0.28), transparent 20rem),
    linear-gradient(180deg, rgba(8, 11, 19, 0.25), rgba(8, 11, 19, 0.72));
}

.related-card {
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.related-card:hover {
  transform: translateY(-10px) scale(1.015);
  border-color: rgba(200, 169, 107, 0.48);
  box-shadow: 0 30px 74px rgba(0, 0, 0, 0.52), 0 0 42px rgba(200, 169, 107, 0.2);
}

.related-card img {
  transition: transform 0.65s ease;
}

.related-card:hover img {
  transform: scale(1.06);
}

.cta-button {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
}

/* .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
} */

@media (max-width: 1024px) {
  .dropcap:first-letter {
    font-size: 3rem;
  }
}

