/* ═══════════════════════════════════════════════════════════
   UTILITIES & SHARED VISUAL PRIMITIVES
   ═══════════════════════════════════════════════════════════ */

.container{width:100%;max-width:1200px;margin:0 auto;padding:0 24px}
.desktop-only{display:flex}
.mobile-only{display:none}
.section{padding:100px 0}

/* ── GRADIENT TEXT ───────────────────────────────────────── */
.gradient-text{
  background:linear-gradient(91deg,rgb(130,130,130) 0%,rgb(255,255,255) 52%,rgb(150,150,150) 100%);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
}
.gradient-text--accent{
  background:linear-gradient(91deg,rgb(180,40,50) 0%,rgb(230,90,90) 50%,rgb(60,15,20) 100%);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
}

/* ── DIAMOND SHAPES ─────────────────────────────────────── */
.diamond-xs{
  display:inline-block;width:8px;height:8px;
  background:#fff;transform:rotate(45deg);
  flex-shrink:0;
}
.diamond-sm{
  display:inline-block;width:10px;height:10px;
  background:#fff;transform:rotate(45deg);
  margin-right:8px;flex-shrink:0;
}
.accordion--accent .diamond-xs,
.advisory-page .section .diamond-xs,
.btn--accent .diamond-sm{
  background:rgb(180,40,50);
}
.advisory-page .footer .diamond-xs,
.advisory-page .navbar .diamond-sm{background:#fff}

/* ── FADE-IN ANIMATION ──────────────────────────────────── */
.fade-in{opacity:0;transform:translateY(30px);transition:opacity .7s ease,transform .7s ease}
.fade-in.visible{opacity:1;transform:translateY(0)}

/* ── SECTION HEADERS ────────────────────────────────────── */
.section-header{margin-bottom:48px}
.section-label{
  display:inline-flex;align-items:center;gap:8px;
  font-size:14px;letter-spacing:.06em;text-transform:uppercase;
  color:rgba(255,255,255,.5);margin-bottom:16px;
}
.section-title{
  font-family:var(--font-heading);font-weight:400;
  font-size:clamp(36px,5vw,60px);line-height:1.1;letter-spacing:-.005em;
}
.section-title--sm{
  font-family:var(--font-heading);font-weight:400;
  font-size:clamp(30px,4vw,46px);line-height:1.15;letter-spacing:-.005em;
}
.section-sub{
  font-size:16px;color:rgba(255,255,255,.5);margin-bottom:8px;
}
