/* ==========================================================================
   ADVISORY PAGE — companion styles
   Loaded after styles.css. Reuses shared tokens, panels, buttons, eyebrows,
   plus the .portal__brand / .badge classes already defined in styles.css.
   ========================================================================== */

.advisory-hero {
  position: relative;
  padding-top: clamp(7.5rem, 14vh, 10rem);
  padding-bottom: clamp(4rem, 8vh, 6rem);
  overflow: hidden;
  background: url('image/Hero.JPG') center/cover no-repeat;
}
.advisory-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  pointer-events: none;
}
.advisory-hero__inner { max-width: 64ch; }
.advisory-hero__inner .portal__brand { margin-bottom: 1.6rem; }
.advisory-hero .portal__brand { color: #ffffff !important; }
.advisory-hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1.16;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
  color: #ffffff !important;
}
.advisory-hero__lede {
  line-height: 1.85;
  font-size: 1rem;
  margin-bottom: 2.4rem;
  color: #ffffff !important;
}
.advisory-hero__fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--ink));
  pointer-events: none;
}

/* Force all hero text white with no transitions or animations */
.advisory-hero *,
.advisory-hero .reveal,
.advisory-hero .reveal.is-visible {
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8) !important;
  transition: none !important;
  animation: none !important;
}

/* Reveal elements inside the hero skip the fade-in — show immediately */
.advisory-hero .reveal {
  opacity: 1 !important;
  transform: none !important;
}

.section-advisory-offer { padding-block: var(--pad-y); }
.advisory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.2rem);
}
.advisory-card {
  background: var(--midnight);
  border: 1px solid var(--hairline-dark);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.advisory-card__num {
  font-family: "Courier New", monospace;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--bronze);
  margin-bottom: 1.2rem;
}
.advisory-card__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--ivory);
  margin-bottom: 1rem;
}
.advisory-card__copy { color: var(--mist); line-height: 1.8; }

@media (max-width: 1024px) {
  .advisory-grid { grid-template-columns: 1fr; }
}
