  /* ==========================================
       DIVINE THEME TOKENS
    ========================================== */
  :root {
      --gold-1: #f9e47a;
      --gold-2: #d4a843;
      --gold-3: #b8862a;
      --gold-4: #8a5e1a;
      --saffron: #e8871e;
      --crimson: #9b2335;
      --lotus: #c4627a;

      --gold-gradient: linear-gradient(135deg,
              #f9e47a 0%,
              #d4a843 40%,
              #b8862a 70%,
              #f5c842 100%);
      --gold-text-gradient: linear-gradient(135deg,
              #f9e47a,
              #d4a843,
              #e8c060,
              #b8862a);
      --saffron-gradient: linear-gradient(135deg, #f5a623, #e8871e, #c45e0a);

      --bg: #05040300;
      --bg-solid: #05040390;
      --surface: rgba(18, 12, 6, 0.92);
      --surface-2: rgba(28, 20, 10, 0.85);
      --glass: rgba(212, 168, 67, 0.04);
      --glass-border: rgba(212, 168, 67, 0.18);
      --glass-border-hover: rgba(212, 168, 67, 0.55);

      --text: #f8f0dd;
      --text-muted: #d4b07a;
      --text-dim: #a07848;

      --shadow-gold:
          0 0 40px rgba(212, 168, 67, 0.15), 0 20px 60px rgba(0, 0, 0, 0.7);
      --shadow-hover:
          0 0 60px rgba(212, 168, 67, 0.3), 0 25px 70px rgba(0, 0, 0, 0.8);
      --glow-sm: 0 0 12px rgba(212, 168, 67, 0.4);
      --glow-lg:
          0 0 40px rgba(212, 168, 67, 0.5), 0 0 80px rgba(232, 135, 30, 0.2);

      --radius: 4px;
      --radius-lg: 12px;
  }

  [data-theme="light"] {
      --bg: #fdf8f0;
      --bg-solid: #fffcf8;
      --surface: rgba(255, 252, 245, 0.96);
      --surface-2: rgba(248, 243, 232, 0.9);
      --glass: rgba(212, 168, 67, 0.06);
      --glass-border: rgba(180, 130, 40, 0.2);
      --glass-border-hover: rgba(180, 130, 40, 0.5);

      --text: #140c02;
      --text-muted: #5a3e10;
      --text-dim: #7a5820;

      --shadow-gold:
          0 4px 30px rgba(180, 130, 40, 0.1), 0 10px 40px rgba(0, 0, 0, 0.06);
      --shadow-hover:
          0 8px 50px rgba(180, 130, 40, 0.18), 0 16px 50px rgba(0, 0, 0, 0.08);
      --glow-sm: 0 0 10px rgba(180, 130, 40, 0.25);
      --glow-lg:
          0 0 30px rgba(180, 130, 40, 0.3), 0 0 60px rgba(200, 130, 30, 0.1);
  }

  .mandala-sm {
      width: 75px;
      height: 75px;
      margin: 0 auto 24px;
      animation: spin-slow 22s linear infinite;
      opacity: 0.55;
  }

  @keyframes spin-slow {
      from {
          transform: rotate(0deg);
      }

      to {
          transform: rotate(360deg);
      }
  }

  /* ==========================================
       RESET & BASE
    ========================================== */
  *,
  *::before,
  *::after {
      box-sizing: border-box;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      background-color: var(--bg-solid);
      background-image:
          radial-gradient(ellipse 80% 60% at 20% 10%,
              rgba(212, 168, 67, 0.07) 0%,
              transparent 60%),
          radial-gradient(ellipse 60% 50% at 80% 80%,
              rgba(232, 135, 30, 0.06) 0%,
              transparent 55%),
          radial-gradient(ellipse 40% 40% at 50% 50%,
              rgba(155, 35, 53, 0.04) 0%,
              transparent 70%);
      color: var(--text);
      font-family: "Cormorant Garamond", Georgia, serif;
      /* font-family: "inter", serif; */
      font-size: clamp(18px, 1.08vw, 20px);
      font-weight: 500;
      line-height: 1.75;
      min-height: 100vh;
      overflow-x: hidden;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
  }

  [data-theme="dark"] body {
      /* background-color: #080503; */
      background-color: #010100;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      font-family: "Cinzel", serif;
      font-weight: 700;
      letter-spacing: 0.06em;
  }

  p {
      color: var(--text-muted);
      margin-bottom: 1rem;
      font-weight: 500;
      font-size: 1.06rem;
      /* max-width: 68ch; */
  }

  a {
      color: var(--gold-2);
      text-decoration: none;
      transition: color 0.2s;
  }

  a:hover {
      color: var(--gold-1);
  }

  /* ==========================================
       SACRED GEOMETRY BACKGROUND CANVAS
    ========================================== */
  #cosmos {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      opacity: 0.35;
  }

  [data-theme="light"] #cosmos {
      opacity: 0.12;
  }

  /* ==========================================
       GOLD TEXT UTILITY
    ========================================== */
  .text-gold {
      background: var(--gold-text-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .text-saffron {
      color: var(--saffron) !important;
  }

  .text-dim {
      color: var(--text-dim) !important;
  }

  /* ==========================================
       ORNAMENTAL DIVIDER
    ========================================== */
  .divider {
      display: flex;
      align-items: center;
      gap: 16px;
      margin: 48px 0;
  }

  .divider::before,
  .divider::after {
      content: "";
      flex: 1;
      height: 1px;
      background: linear-gradient(to right,
              transparent,
              var(--gold-2),
              transparent);
  }

  .divider-icon {
      font-size: 1.1rem;
      color: var(--gold-2);
      filter: drop-shadow(0 0 6px rgba(212, 168, 67, 0.6));
      flex-shrink: 0;
  }

  /* ==========================================
       NAVBAR
    ========================================== */
  .navbar-class {
      background: rgba(8, 5, 3, 0.82) !important;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--glass-border);
      position: relative;
      z-index: 1030;
      /* padding: 14px 24px; */
      /* position: sticky; */
      /* top: 0; */
      /* z-index: 1000; */
  }

  .navbar .container-fluid {
      min-height: 72px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
  }

  [data-theme="light"] .navbar-class {
      background: rgba(253, 248, 240, 0.88) !important;
  }

  .navbar-brand {
      font-family: "Cinzel Decorative", serif;
      font-weight: 700;
      font-size: 1.1rem;
      background: var(--gold-text-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: 0.08em;
  }

  .nav-link {
      font-family: "Cinzel", serif;
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      color: var(--text-muted) !important;
      text-transform: uppercase;
      transition:
          color 0.25s,
          text-shadow 0.25s;
      padding: 6px 14px !important;
      font-weight: 600;
  }

  .nav-link:hover {
      color: var(--gold-2) !important;
      text-shadow: var(--glow-sm);
  }

  .nav-link.active {
      color: var(--gold-1) !important;
  }

  .navbar-toggler {
      padding: 8px 10px;
      border-radius: 10px;
      background: rgba(212, 168, 67, 0.08);
  }

  .navbar-search-form {
      width: min(100%, 360px);
  }

  .navbar-search-box {
      border: 1px solid rgba(212, 168, 67, 0.3);
      border-radius: 999px;
      background: rgba(18, 12, 6, 0.72);
      box-shadow: inset 0 1px 0 rgba(255, 245, 192, 0.04);
      transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      overflow: hidden;
  }

  [data-theme="light"] .navbar-search-box {
      background: rgba(248, 243, 232, 0.88);
  }

  .navbar-search-box:focus-within {
      border-color: var(--gold-2);
      box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1), var(--glow-sm);
  }

  .navbar-search-input {
      min-height: 44px;
      padding: 10px 52px 10px 18px !important;
      border: none !important;
      border-radius: 999px !important;
      background: transparent !important;
      box-shadow: none !important;
      font-size: 1rem !important;
  }

  .navbar-search-input:focus {
      box-shadow: none !important;
      background: transparent !important;
  }

  .navbar-search-submit {
      position: absolute;
      top: 50%;
      right: 6px;
      transform: translateY(-50%);
      width: 34px;
      height: 34px;
      border: 1px solid rgba(212, 168, 67, 0.22);
      border-radius: 50%;
      background: rgba(212, 168, 67, 0.08);
      color: var(--gold-2);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  }

  .navbar-search-submit:hover {
      border-color: var(--gold-2);
      background: rgba(212, 168, 67, 0.16);
      box-shadow: var(--glow-sm);
  }

  .navbar-search-submit:focus-visible {
      outline: 2px solid var(--gold-2);
      outline-offset: 2px;
  }

  .navbar-search-form-mobile {
      width: 100%;
  }

  .search-suggest-menu {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      right: 0;
      z-index: 40;
      padding: 8px;
      border: 1px solid rgba(212, 168, 67, 0.18);
      border-radius: 18px;
      background: rgba(12, 8, 4, 0.96);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(14px);
      max-height: min(70vh, 420px);
      overflow-y: auto;
  }

  [data-theme="light"] .search-suggest-menu {
      background: rgba(255, 251, 244, 0.98);
  }

  .search-suggest-item {
      width: 100%;
      padding: 10px 12px;
      border: 0;
      border-radius: 12px;
      background: transparent;
      color: var(--text);
      text-align: left;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      transition: background 0.18s ease, color 0.18s ease;
  }

  .search-suggest-item:hover,
  .search-suggest-item.is-active {
      background: rgba(212, 168, 67, 0.1);
      color: var(--gold-1);
  }

  .search-suggest-item+.search-suggest-item {
      margin-top: 2px;
  }

  .search-suggest-label {
      font-size: 0.96rem;
      line-height: 1.35;
  }

  .search-suggest-meta {
      color: var(--gold-3);
      font-family: "Cinzel", serif;
      font-size: 0.63rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      white-space: nowrap;
  }

  .search-suggest-meta.category-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 24px;
      padding: 3px 8px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 0.55rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  .search-suggest-meta.category-pill-inner-obstacles {
      border-color: rgba(166, 58, 41, 0.42);
      background: linear-gradient(180deg, rgba(54, 16, 12, 0.72), rgba(34, 10, 8, 0.82));
      color: #f08a73;
  }

  .search-suggest-meta.category-pill-inner-strengths {
      border-color: rgba(66, 128, 120, 0.4);
      background: linear-gradient(180deg, rgba(18, 39, 41, 0.68), rgba(10, 28, 30, 0.82));
      color: #8ad5c3;
  }

  [data-theme="light"] .search-suggest-meta.category-pill-inner-obstacles {
      border-color: rgba(166, 58, 41, 0.28);
      background: linear-gradient(180deg, rgba(255, 241, 237, 0.96), rgba(252, 234, 228, 0.98));
      color: #a63a29;
  }

  [data-theme="light"] .search-suggest-meta.category-pill-inner-strengths {
      border-color: rgba(66, 128, 120, 0.26);
      background: linear-gradient(180deg, rgba(239, 251, 248, 0.98), rgba(230, 246, 241, 0.98));
      color: #2b7068;
  }

  .navbar-search-form-mobile .search-suggest-menu {
      position: static;
      margin-top: 8px;
      max-height: 280px;
  }

  .navbar-toggler:focus {
      box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.18);
  }

  .nav-menu-shell {
      align-items: center;
      width: 100%;
      flex-basis: 100%;
  }

  /* ==========================================
       BUTTONS
    ========================================== */
  .btn {
      font-family: "Cinzel", serif;
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: var(--radius);
      transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
      position: relative;
      overflow: hidden;
      font-weight: 700;
  }

  .btn::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg,
              rgba(255, 255, 255, 0.18) 0%,
              transparent 60%);
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
  }

  .btn:hover::before {
      opacity: 1;
  }

  .btn-primary {
      background: var(--gold-gradient);
      border: none;
      color: #1a0e04;
      font-weight: 700;
      padding: 10px 28px;
      box-shadow:
          0 2px 20px rgba(212, 168, 67, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: var(--glow-lg);
      color: #0d0700;
  }

  .btn-primary:active {
      transform: translateY(0);
  }

  .btn-outline-gold {
      background: transparent;
      border: 1px solid var(--gold-3);
      color: var(--gold-2);
      padding: 9px 26px;
  }

  .btn-outline-gold:hover {
      background: rgba(212, 168, 67, 0.1);
      border-color: var(--gold-2);
      color: var(--gold-1);
      box-shadow:
          var(--glow-sm),
          inset 0 0 20px rgba(212, 168, 67, 0.05);
      transform: translateY(-2px);
  }

  .btn-ghost {
      background: transparent;
      border: 1px solid var(--glass-border);
      color: var(--text-muted);
      padding: 9px 22px;
  }

  .btn-ghost:hover {
      background: var(--glass);
      border-color: var(--glass-border-hover);
      color: var(--text);
  }

  .btn-saffron {
      background: var(--saffron-gradient);
      border: none;
      color: #fff;
      font-weight: 700;
      padding: 10px 28px;
      box-shadow: 0 2px 20px rgba(232, 135, 30, 0.35);
  }

  .btn-saffron:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 40px rgba(232, 135, 30, 0.5);
      color: #fff;
  }

  /* ==========================================
       CARDS
    ========================================== */
  .card {
      background: var(--surface);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-gold);
      transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      position: relative;
      overflow: hidden;
  }

  .card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg,
              transparent,
              var(--gold-2),
              transparent);
      opacity: 0.7;
  }

  .card:hover {
      border-color: var(--glass-border-hover);
      box-shadow: var(--shadow-hover);
      transform: translateY(-5px);
  }

  .card-title {
      font-family: "Cinzel", serif;
      font-size: 1rem;
      letter-spacing: 0.06em;
      color: var(--text);
  }

  .card-sacred {
      background: linear-gradient(160deg,
              rgba(25, 18, 8, 0.98) 0%,
              rgba(18, 12, 5, 0.98) 100%);
  }

  [data-theme="light"] .card-sacred {
      background: linear-gradient(160deg,
              rgba(255, 252, 244, 0.98) 0%,
              rgba(248, 242, 228, 0.98) 100%);
  }

  /* Lotus accent card */
  .card-lotus {
      border-image: linear-gradient(135deg,
              var(--gold-3),
              var(--saffron),
              var(--gold-3)) 1;
  }

  /* Glow card */
  .card-glow {
      box-shadow:
          0 0 0 1px var(--glass-border),
          0 0 60px rgba(212, 168, 67, 0.08),
          0 20px 60px rgba(0, 0, 0, 0.6);
  }

  .card-glow:hover {
      box-shadow:
          0 0 0 1px rgba(212, 168, 67, 0.4),
          0 0 80px rgba(212, 168, 67, 0.15),
          0 25px 70px rgba(0, 0, 0, 0.7);
  }

  /* Corner ornament */
  .card-ornate::after {
      content: "\2726";
      position: absolute;
      bottom: 12px;
      right: 16px;
      color: var(--gold-4);
      font-size: 0.9rem;
      opacity: 0.5;
  }

  /* ==========================================
       SECTION HEADING
    ========================================== */
  .section-label {
      font-family: "Cinzel", serif;
      font-size: 0.78rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-2);
      margin-bottom: 8px;
      display: block;
      font-weight: 600;
  }

  .display-title {
      font-family: "Cinzel Decorative", serif;
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: 0.04em;
  }

  /* ==========================================
       FORMS
    ========================================== */
  .form-label {
      font-family: "Cinzel", serif;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 8px;
      font-weight: 600;
  }

  .form-control,
  .form-select {
      background: rgba(18, 12, 6, 0.7);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius);
      color: var(--text);
      padding: 12px 16px;
      font-family: "Cormorant Garamond", serif;
      font-size: 1.1rem;
      font-weight: 500;
      transition: all 0.25s;
  }

  [data-theme="light"] .form-control,
  [data-theme="light"] .form-select {
      background: rgba(248, 243, 232, 0.8);
  }

  .form-control::placeholder {
      color: var(--text-dim);
  }

  .form-control:focus,
  .form-select:focus {
      background: rgba(25, 17, 8, 0.8);
      border-color: var(--gold-3);
      box-shadow:
          0 0 0 3px rgba(212, 168, 67, 0.12),
          var(--glow-sm);
      color: var(--text);
      outline: none;
  }

  [data-theme="light"] .form-control:focus,
  [data-theme="light"] .form-select:focus {
      background: rgba(255, 252, 244, 0.95);
  }

  /* ==========================================
       BADGES
    ========================================== */
  .badge-gold {
      background: var(--gold-gradient);
      color: #1a0e04;
      font-family: "Cinzel", serif;
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      padding: 6px 14px;
      border-radius: 2px;
      font-weight: 700;
      text-transform: uppercase;
  }

  .badge-saffron {
      background: var(--saffron-gradient);
      color: #fff;
      font-family: "Cinzel", serif;
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      padding: 6px 14px;
      border-radius: 2px;
      font-weight: 700;
  }

  .badge-outline {
      background: transparent;
      border: 1px solid var(--gold-3);
      color: var(--gold-2);
      font-family: "Cinzel", serif;
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      padding: 5px 13px;
      border-radius: 2px;
      text-transform: uppercase;
      font-weight: 600;
  }

  /* ==========================================
       ALERTS
    ========================================== */
  .alert-divine {
      background: linear-gradient(135deg,
              rgba(212, 168, 67, 0.08),
              rgba(232, 135, 30, 0.05));
      border: 1px solid rgba(212, 168, 67, 0.3);
      border-left: 3px solid var(--gold-2);
      color: var(--text-muted);
      border-radius: var(--radius);
      padding: 16px 20px;
      font-size: 0.95rem;
  }

  .alert-divine strong {
      font-family: "Cinzel", serif;
      color: var(--gold-2);
      font-size: 0.85rem;
      letter-spacing: 0.06em;
  }

  .alert-sacred {
      background: linear-gradient(135deg,
              rgba(155, 35, 53, 0.08),
              rgba(196, 98, 122, 0.04));
      border: 1px solid rgba(155, 35, 53, 0.3);
      border-left: 3px solid var(--crimson);
      color: var(--text-muted);
      border-radius: var(--radius);
      padding: 16px 20px;
  }

  /* ==========================================
       TABS
    ========================================== */
  .nav-tabs {
      border-bottom: 1px solid var(--glass-border);
      gap: 4px;
  }

  .nav-tabs .nav-link {
      font-family: "Cinzel", serif;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted) !important;
      border: none;
      border-bottom: 2px solid transparent;
      background: transparent;
      padding: 10px 18px;
      transition: all 0.25s;
      border-radius: 0;
      font-weight: 600;
  }

  .nav-tabs .nav-link:hover {
      color: var(--gold-2) !important;
      background: rgba(212, 168, 67, 0.04);
  }

  .nav-tabs .nav-link.active {
      color: var(--gold-1) !important;
      background: transparent;
      border-bottom-color: var(--gold-2);
      text-shadow: 0 0 20px rgba(212, 168, 67, 0.4);
  }

  /* ==========================================
       ACCORDION
    ========================================== */
  .accordion-item {
      background: var(--surface-2);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius) !important;
      margin-bottom: 6px;
      overflow: hidden;
  }

  .accordion-button {
      background: var(--surface-2);
      color: var(--text-muted);
      font-family: "Cinzel", serif;
      font-size: 0.92rem;
      letter-spacing: 0.06em;
      padding: 18px 20px;
      border: none;
      transition: all 0.25s;
      font-weight: 600;
  }

  .accordion-button:not(.collapsed) {
      background: linear-gradient(90deg,
              rgba(212, 168, 67, 0.12),
              rgba(212, 168, 67, 0.04));
      color: var(--gold-1);
      box-shadow: none;
  }

  .accordion-button::after {
      filter: sepia(1) saturate(2) hue-rotate(10deg);
  }

  .accordion-button:focus {
      box-shadow: none;
  }

  .accordion-body {
      background: var(--surface-2);
      color: var(--text-muted);
      font-size: 1.05rem;
      font-weight: 500;
      padding: 16px 20px;
  }

  /* ==========================================
       PROGRESS
    ========================================== */
  .progress {
      background: rgba(255, 255, 255, 0.04);
      border-radius: 2px;
      height: 6px;
      border: 1px solid var(--glass-border);
  }

  .progress-bar {
      background: var(--gold-gradient);
      border-radius: 2px;
      position: relative;
      overflow: visible;
  }

  .progress-bar::after {
      content: "";
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gold-1);
      box-shadow: 0 0 8px rgba(249, 228, 122, 0.8);
  }

  /* ==========================================
       LIST GROUP
    ========================================== */
  .list-group-item {
      background: var(--surface-2);
      border: 1px solid var(--glass-border);
      color: var(--text-muted);
      font-family: "Cormorant Garamond", serif;
      font-size: 1rem;
      padding: 12px 18px;
      transition: all 0.2s;
  }

  .list-group-item:first-child {
      border-radius: var(--radius) var(--radius) 0 0 !important;
  }

  .list-group-item:last-child {
      border-radius: 0 0 var(--radius) var(--radius) !important;
  }

  .list-group-item:hover {
      background: rgba(212, 168, 67, 0.06);
      color: var(--text);
      border-color: rgba(212, 168, 67, 0.25);
  }

  .list-group-item.active {
      background: linear-gradient(90deg,
              rgba(212, 168, 67, 0.15),
              rgba(212, 168, 67, 0.04));
      border-color: rgba(212, 168, 67, 0.35);
      color: var(--gold-1);
  }

  /* ==========================================
       TABLE
    ========================================== */
  .table {
      color: var(--text-muted);
      font-size: 1.05rem;
      font-weight: 500;
  }

  .table thead th {
      font-family: "Cinzel", serif;
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold-2);
      border-bottom: 1px solid var(--glass-border);
      padding: 14px 16px;
      font-weight: 700;
  }

  .table td {
      border-color: var(--glass-border);
      padding: 12px 16px;
      vertical-align: middle;
  }

  .table tbody tr {
      transition: background 0.2s;
  }

  .table tbody tr:hover {
      background: rgba(212, 168, 67, 0.04);
  }

  .table-striped>tbody>tr:nth-of-type(odd)>* {
      background: rgba(255, 255, 255, 0.02);
      color: var(--text-muted);
  }

  /* ==========================================
       DROPDOWN
    ========================================== */
  .dropdown-menu {
      background: rgba(15, 10, 5, 0.97);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius);
      backdrop-filter: blur(20px);
      box-shadow:
          0 20px 60px rgba(0, 0, 0, 0.7),
          0 0 40px rgba(212, 168, 67, 0.06);
      padding: 8px;
  }

  [data-theme="light"] .dropdown-menu {
      background: rgba(253, 248, 240, 0.98);
  }

  .dropdown-item {
      color: var(--text-muted);
      font-family: "Cinzel", serif;
      font-size: 0.82rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 11px 16px;
      border-radius: var(--radius);
      transition: all 0.2s;
      font-weight: 600;
  }

  .dropdown-item:hover {
      background: rgba(212, 168, 67, 0.1);
      color: var(--gold-2);
  }

  .dropdown-divider {
      border-color: var(--glass-border);
      margin: 6px 0;
  }

  /* ==========================================
       MODAL
    ========================================== */
  .modal-content {
      background: var(--surface);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius-lg);
      box-shadow:
          0 0 0 1px rgba(212, 168, 67, 0.08),
          0 40px 100px rgba(0, 0, 0, 0.8);
      position: relative;
      overflow: hidden;
  }

  .modal-content::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg,
              transparent,
              var(--gold-2),
              var(--saffron),
              transparent);
  }

  .modal-header {
      border-bottom: 1px solid var(--glass-border);
      padding: 20px 28px;
  }

  .modal-body {
      padding: 28px;
  }

  .modal-footer {
      border-top: 1px solid var(--glass-border);
      padding: 16px 28px;
  }

  .btn-close {
      filter: invert(1) sepia(1) saturate(2) hue-rotate(0deg);
      opacity: 0.5;
  }

  .btn-close:hover {
      opacity: 1;
  }

  .modal-title {
      font-family: "Cinzel", serif;
      font-size: 1rem;
      letter-spacing: 0.08em;
  }

  .modal-backdrop.show {
      opacity: 0.75;
  }

  /* ==========================================
       TOAST / NOTIFICATION
    ========================================== */
  .toast-divine {
      background: var(--surface);
      border: 1px solid var(--glass-border);
      border-left: 3px solid var(--gold-2);
      border-radius: var(--radius);
      padding: 14px 18px;
      box-shadow: var(--shadow-gold);
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 280px;
  }

  .toast-divine-icon {
      font-size: 1.4rem;
      flex-shrink: 0;
  }

  .toast-divine-title {
      font-family: "Cinzel", serif;
      font-size: 0.78rem;
      color: var(--gold-2);
      letter-spacing: 0.08em;
  }

  .toast-divine-msg {
      font-size: 0.88rem;
      color: var(--text-muted);
      margin: 0;
  }

  /* ==========================================
       STAT / KPI CARDS
    ========================================== */
  .stat-card {
      background: var(--surface);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius-lg);
      padding: 24px;
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .stat-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg,
              transparent,
              var(--gold-2),
              transparent);
  }

  .stat-card:hover {
      border-color: var(--glass-border-hover);
      box-shadow: var(--shadow-hover);
      transform: translateY(-4px);
  }

  .stat-value {
      font-family: "Cinzel Decorative", serif;
      font-size: 2rem;
      font-weight: 700;
      background: var(--gold-text-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.1;
  }

  .stat-label {
      font-family: "Cinzel", serif;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-top: 6px;
      font-weight: 600;
  }

  .stat-delta {
      font-size: 0.9rem;
      color: var(--saffron);
      display: flex;
      align-items: center;
      gap: 4px;
      margin-top: 10px;
      font-weight: 600;
  }

  .stat-icon {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 1.6rem;
      opacity: 0.15;
  }

  /* ==========================================
       HERO SECTION
    ========================================== */
  .hero {
      padding: 80px 0 60px;
      text-align: center;
      position: relative;
  }

  .hero-eyebrow {
      font-family: "Cinzel", serif;
      font-size: 0.8rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold-2);
      margin-bottom: 20px;
      display: block;
      font-weight: 600;
  }

  .hero-title {
      font-family: "Cinzel Decorative", serif;
      font-weight: 900;
      font-size: clamp(2rem, 6vw, 4rem);
      letter-spacing: 0.04em;
      line-height: 1.1;
      margin-bottom: 20px;
  }

  .hero-sub {
      font-family: "Cormorant Garamond", serif;
      font-style: italic;
      font-size: 1.35rem;
      font-weight: 500;
      color: var(--text-muted);
      max-width: 520px;
      margin: 0 auto 36px;
  }

  /* ==========================================
       MANDALA ORNAMENT
    ========================================== */
  .mandala-ring {
      width: 80px;
      height: 80px;
      margin: 0 auto 24px;
      animation: spin-slow 20s linear infinite;
      opacity: 0.65;
  }

  @keyframes spin-slow {
      from {
          transform: rotate(0deg);
      }

      to {
          transform: rotate(360deg);
      }
  }

  /* ==========================================
       SCROLLBAR
    ========================================== */
  ::-webkit-scrollbar {
      width: 6px;
  }

  ::-webkit-scrollbar-track {
      background: transparent;
  }

  ::-webkit-scrollbar-thumb {
      background: var(--gold-4);
      border-radius: 3px;
  }

  ::-webkit-scrollbar-thumb:hover {
      background: var(--gold-2);
  }

  /* ==========================================
       THEME TOGGLE
    ========================================== */
  .theme-toggle {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      color: var(--gold-2);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.25s;
      font-size: 1rem;
  }

  .theme-toggle:hover {
      border-color: var(--gold-2);
      box-shadow: var(--glow-sm);
      background: rgba(212, 168, 67, 0.08);
  }

  .theme-toggle:focus-visible,
  a:focus-visible,
  button:focus-visible,
  .btn:focus-visible {
      outline: 2px solid var(--gold-2);
      outline-offset: 3px;
  }

  /* ==========================================
       FLAME ANIMATION
    ========================================== */
  .flame {
      display: inline-block;
      animation: flicker 2s ease-in-out infinite alternate;
      transform-origin: bottom center;
  }

  @keyframes flicker {
      0% {
          transform: scaleY(1) rotate(-1deg);
          filter: brightness(1);
      }

      33% {
          transform: scaleY(1.05) rotate(1deg);
          filter: brightness(1.1);
      }

      66% {
          transform: scaleY(0.97) rotate(-0.5deg);
          filter: brightness(0.95);
      }

      100% {
          transform: scaleY(1.03) rotate(0.8deg);
          filter: brightness(1.05);
      }
  }

  /* ==========================================
       FEATURE LIST ITEM
    ========================================== */
  .feature-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 16px 0;
      border-bottom: 1px solid var(--glass-border);
  }

  .feature-item:last-child {
      border-bottom: none;
  }

  .feature-icon {
      color: var(--gold-2);
      font-size: 1.2rem;
      margin-top: 2px;
      flex-shrink: 0;
  }

  .feature-title {
      font-family: "Cinzel", serif;
      font-size: 0.82rem;
      letter-spacing: 0.06em;
      color: var(--text);
      margin-bottom: 4px;
  }

  .feature-desc {
      font-size: 0.9rem;
      color: var(--text-dim);
      margin: 0;
      line-height: 1.5;
  }

  /* ==========================================
       PILL TAG
    ========================================== */
  .pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 14px;
      border-radius: 100px;
      font-family: "Cinzel", serif;
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: rgba(212, 168, 67, 0.08);
      border: 1px solid rgba(212, 168, 67, 0.2);
      color: var(--gold-3);
  }

  /* ==========================================
       LAYOUT HELPERS
    ========================================== */
  .position-relative {
      position: relative;
  }

  .z-1 {
      z-index: 1;
  }

  .section-pad {
      padding: 40px 0;
  }

  /* ==========================================
       RESPONSIVE POLISH
    ========================================== */
  @media (max-width: 1199px) {
      body {
          font-size: 18.5px;
      }
  }

  @media (max-width: 991px) {
      body {
          font-size: 17.5px;
          line-height: 1.72;
      }

      /* .navbar .container-fluid {
          min-height: 66px;
      } */

      .nav-menu-shell {
          margin-top: 14px;
          padding: 14px 16px;
          background: rgba(16, 10, 5, 0.94);
          border: 1px solid var(--glass-border);
          border-radius: var(--radius-lg);
          box-shadow: var(--shadow-gold);
      }

      [data-theme="light"] .nav-menu-shell {
          background: rgba(255, 252, 245, 0.96);
      }

      .navbar-nav {
          gap: 6px !important;
      }

      .nav-link {
          padding: 10px 12px !important;
          border-radius: 10px;
      }

      .nav-link.active,
      .nav-link:hover {
          background: rgba(212, 168, 67, 0.08);
      }

      .page-footer .container {
          text-align: center;
      }
  }

  @media (max-width: 767px) {
      body {
          font-size: 16.75px;
          line-height: 1.7;
      }

      h1 {
          line-height: 1.12;
      }

      h2 {
          font-size: 1.45rem;
          line-height: 1.22;
      }

      h3 {
          font-size: 1.08rem;
          line-height: 1.25;
      }

      p {
          font-size: 1.02rem;
          max-width: none;
      }

      .divider {
          margin: 34px 0;
          gap: 10px;
      }

      .divider-icon {
          font-size: 0.95rem;
      }

      .btn {
          width: 100%;
          justify-content: center;
          padding-top: 12px;
          padding-bottom: 12px;
      }

      .btn+.btn {
          margin-top: 10px;
      }

      .theme-toggle {
          width: 40px;
          height: 40px;
      }

      .navbar-search-form {
          width: 100%;
      }

      .navbar-search-input {
          min-height: 42px;
      }

      .footer-text {
          font-size: 0.95rem;
      }
  }

  /* ==========================================
       GLOW PULSE ANIMATION
    ========================================== */
  @keyframes glow-pulse {

      0%,
      100% {
          box-shadow: 0 0 20px rgba(212, 168, 67, 0.15);
      }

      50% {
          box-shadow:
              0 0 40px rgba(212, 168, 67, 0.35),
              0 0 80px rgba(232, 135, 30, 0.1);
      }
  }

  .glow-pulse {
      animation: glow-pulse 3s ease-in-out infinite;
  }

  /* ==========================================
       FADE IN ON LOAD
    ========================================== */
  @keyframes fade-up {
      from {
          opacity: 0;
          transform: translateY(20px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .fade-up {
      animation: fade-up 0.7s ease both;
  }

  .fade-up-2 {
      animation: fade-up 0.7s 0.15s ease both;
  }

  .fade-up-3 {
      animation: fade-up 0.7s 0.3s ease both;
  }

  .fade-up-4 {
      animation: fade-up 0.7s 0.45s ease both;
  }

  @media (prefers-reduced-motion: reduce) {
      html {
          scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.01ms !important;
      }
  }

  /* ==========================================
       CHECKBOXES & RADIOS
    ========================================== */
  .form-check-input {
      background-color: var(--input-bg);
      border: 1.5px solid var(--gold-3);
      width: 1.15em;
      height: 1.15em;
      cursor: pointer;
      transition: all 0.2s;
  }

  .form-check-input:checked {
      background-color: var(--gold-2);
      border-color: var(--gold-2);
      box-shadow: 0 0 8px rgba(212, 168, 67, 0.5);
  }

  .form-check-input:focus {
      box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.2);
      border-color: var(--gold-2);
  }

  .form-check-input[type="radio"]:checked {
      background-color: var(--gold-2);
      border-color: var(--gold-2);
  }

  .form-check-label {
      font-family: "Cormorant Garamond", serif;
      font-size: 1.05rem;
      font-weight: 500;
      color: var(--text-muted);
      cursor: pointer;
      padding-left: 4px;
  }

  /* ==========================================
       TOGGLE SWITCH
    ========================================== */
  .form-switch .form-check-input {
      width: 2.4em;
      height: 1.3em;
      background-color: var(--input-bg);
      border-color: var(--gold-4);
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23b8862a'/%3e%3c/svg%3e");
  }

  .form-switch .form-check-input:checked {
      background-color: var(--gold-3);
      border-color: var(--gold-2);
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23f9e47a'/%3e%3c/svg%3e");
      box-shadow: 0 0 10px rgba(212, 168, 67, 0.4);
  }

  /* ==========================================
       RANGE SLIDER
    ========================================== */
  .form-range {
      cursor: pointer;
  }

  .form-range::-webkit-slider-track {
      background: var(--input-bg);
      border: 1px solid var(--glass-border);
      border-radius: 2px;
      height: 5px;
  }

  .form-range::-webkit-slider-thumb {
      background: var(--gold-gradient);
      border: none;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      box-shadow: 0 0 8px rgba(212, 168, 67, 0.5);
      transition: box-shadow 0.2s;
  }

  .form-range::-webkit-slider-thumb:hover {
      box-shadow: 0 0 16px rgba(212, 168, 67, 0.7);
  }

  .form-range:focus {
      outline: none;
  }

  .form-range:focus::-webkit-slider-thumb {
      box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.2);
  }

  /* ==========================================
       FILE UPLOAD
    ========================================== */
  .form-control[type="file"] {
      padding: 10px 14px;
      cursor: pointer;
      color: var(--text-muted);
  }

  .form-control[type="file"]::file-selector-button {
      font-family: "Cinzel", serif;
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      font-weight: 700;
      text-transform: uppercase;
      background: var(--gold-gradient);
      color: #1a0e04;
      border: none;
      padding: 6px 16px;
      border-radius: var(--radius);
      margin-right: 12px;
      cursor: pointer;
      transition: all 0.2s;
  }

  .form-control[type="file"]::file-selector-button:hover {
      box-shadow: var(--glow-sm);
  }

  /* ==========================================
       INPUT GROUP
    ========================================== */
  .input-group-text {
      background: rgba(30, 20, 8, 0.8);
      border: 1px solid var(--glass-border);
      color: var(--gold-2);
      font-family: "Cinzel", serif;
      font-size: 0.82rem;
      letter-spacing: 0.06em;
      font-weight: 600;
      padding: 10px 16px;
  }

  [data-theme="light"] .input-group-text {
      background: rgba(240, 232, 215, 0.8);
  }

  /* ==========================================
       FLOATING LABELS
    ========================================== */
  .form-floating>label {
      font-family: "Cinzel", serif;
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-dim);
      font-weight: 600;
      padding: 14px 16px;
  }

  .form-floating>.form-control:focus~label,
  .form-floating>.form-control:not(:placeholder-shown)~label {
      color: var(--gold-2);
      transform: scale(0.82) translateY(-0.8rem);
  }

  .form-floating>.form-control {
      padding: 20px 16px 8px;
      height: 58px;
  }

  /* ==========================================
       COLOR INPUT
    ========================================== */
  .form-control-color {
      width: 56px;
      height: 44px;
      padding: 4px;
      background: var(--input-bg);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius);
      cursor: pointer;
  }

  .form-control-color::-webkit-color-swatch {
      border-radius: 3px;
      border: none;
  }

  /* ==========================================
       BREADCRUMB
    ========================================== */
  .breadcrumb {
      font-family: "Cinzel", serif;
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      font-weight: 600;
      background: transparent;
      padding: 0;
      margin: 0;
  }

  .breadcrumb-item a {
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
  }

  .breadcrumb-item a:hover {
      color: var(--gold-1);
  }

  .breadcrumb-item.active {
      color: var(--gold-2);
  }

  .breadcrumb-item+.breadcrumb-item::before {
      content: "\2726";
      color: var(--gold-4);
      font-size: 0.55rem;
      vertical-align: middle;
      padding: 0 8px;
  }

  /* ==========================================
       PAGINATION
    ========================================== */
  .page-link {
      background: var(--surface-2);
      border: 1px solid var(--glass-border);
      color: var(--text-muted);
      font-family: "Cinzel", serif;
      font-size: 0.78rem;
      letter-spacing: 0.06em;
      font-weight: 600;
      padding: 9px 15px;
      transition: all 0.2s;
  }

  .page-link:hover {
      background: rgba(212, 168, 67, 0.1);
      border-color: var(--gold-3);
      color: var(--gold-1);
      box-shadow: var(--glow-sm);
  }

  .page-link:focus {
      box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.2);
  }

  .page-item.active .page-link {
      background: var(--gold-gradient);
      border-color: var(--gold-2);
      color: #1a0e04;
      font-weight: 700;
      box-shadow: var(--glow-sm);
  }

  .page-item.disabled .page-link {
      background: var(--surface);
      border-color: var(--glass-border);
      color: var(--text-dim);
  }

  /* ==========================================
       BUTTON GROUP
    ========================================== */
  .btn-group .btn {
      border-radius: 0;
  }

  .btn-group .btn:first-child {
      border-radius: var(--radius) 0 0 var(--radius);
  }

  .btn-group .btn:last-child {
      border-radius: 0 var(--radius) var(--radius) 0;
  }

  .btn-group-vertical .btn {
      border-radius: 0;
  }

  .btn-group-vertical .btn:first-child {
      border-radius: var(--radius) var(--radius) 0 0;
  }

  .btn-group-vertical .btn:last-child {
      border-radius: 0 0 var(--radius) var(--radius);
  }

  /* ==========================================
       SPINNER
    ========================================== */
  .spinner-border {
      border-color: rgba(212, 168, 67, 0.25);
      border-top-color: var(--gold-2);
      width: 2rem;
      height: 2rem;
  }

  .spinner-border-sm {
      width: 1.1rem;
      height: 1.1rem;
      border-width: 0.15em;
  }

  .spinner-grow {
      background-color: var(--gold-2);
  }

  /* ==========================================
       SKELETON / PLACEHOLDER
    ========================================== */
  .placeholder {
      background: linear-gradient(90deg,
              rgba(212, 168, 67, 0.08) 25%,
              rgba(212, 168, 67, 0.18) 50%,
              rgba(212, 168, 67, 0.08) 75%);
      background-size: 200% 100%;
      animation: shimmer 1.8s infinite;
      border-radius: var(--radius);
  }

  @keyframes shimmer {
      0% {
          background-position: 200% 0;
      }

      100% {
          background-position: -200% 0;
      }
  }

  .placeholder-wave .placeholder {
      animation: shimmer 1.8s infinite linear;
  }

  /* ==========================================
       TOOLTIP
    ========================================== */
  .tooltip-inner {
      background: rgba(12, 8, 3, 0.97);
      border: 1px solid var(--gold-4);
      color: var(--gold-1);
      font-family: "Cinzel", serif;
      font-size: 0.72rem;
      letter-spacing: 0.06em;
      font-weight: 600;
      padding: 6px 12px;
      border-radius: var(--radius);
      box-shadow: var(--shadow-gold);
  }

  .tooltip .tooltip-arrow::before {
      border-top-color: var(--gold-4);
  }

  /* ==========================================
       POPOVER
    ========================================== */
  .popover {
      background: var(--surface);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-gold);
  }

  .popover-header {
      background: linear-gradient(90deg,
              rgba(212, 168, 67, 0.1),
              transparent);
      border-bottom: 1px solid var(--glass-border);
      color: var(--gold-1);
      font-family: "Cinzel", serif;
      font-size: 0.82rem;
      letter-spacing: 0.08em;
      font-weight: 700;
      padding: 12px 18px;
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .popover-body {
      color: var(--text-muted);
      font-family: "Cormorant Garamond", serif;
      font-size: 1rem;
      font-weight: 500;
      padding: 14px 18px;
  }

  .popover-arrow::after {
      border-top-color: var(--glass-border) !important;
  }

  /* ==========================================
       OFFCANVAS
    ========================================== */
  .offcanvas {
      background: var(--surface);
      border-color: var(--glass-border);
      box-shadow: var(--shadow-gold);
  }

  .offcanvas-header {
      border-bottom: 1px solid var(--glass-border);
      padding: 20px 24px;
      background: linear-gradient(90deg,
              rgba(212, 168, 67, 0.06),
              transparent);
  }

  .offcanvas-title {
      font-family: "Cinzel", serif;
      font-size: 1rem;
      letter-spacing: 0.08em;
      font-weight: 700;
      color: var(--gold-1);
  }

  .offcanvas-body {
      padding: 24px;
      color: var(--text-muted);
      font-size: 1.05rem;
      font-weight: 500;
  }

  /* ==========================================
       CAROUSEL
    ========================================== */
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
      filter: sepia(1) saturate(3) hue-rotate(5deg) brightness(1.2);
      width: 28px;
      height: 28px;
  }

  .carousel-control-prev,
  .carousel-control-next {
      width: 6%;
      opacity: 0.6;
      transition: opacity 0.2s;
  }

  .carousel-control-prev:hover,
  .carousel-control-next:hover {
      opacity: 1;
  }

  .carousel-indicators [data-bs-target] {
      background-color: var(--gold-4);
      border: none;
      height: 3px;
      border-radius: 2px;
      transition: all 0.3s;
  }

  .carousel-indicators .active {
      background-color: var(--gold-2);
      width: 28px;
      box-shadow: var(--glow-sm);
  }

  /* ==========================================
       BLOCKQUOTE
    ========================================== */
  .blockquote-divine {
      border-left: 3px solid var(--gold-2);
      padding: 16px 24px;
      background: linear-gradient(90deg,
              rgba(212, 168, 67, 0.06),
              transparent);
      border-radius: 0 var(--radius) var(--radius) 0;
      margin: 0;
  }

  .blockquote-divine p {
      font-style: italic;
      font-size: 1.2rem;
      font-weight: 500;
      color: var(--text-muted);
      margin: 0 0 10px;
      line-height: 1.6;
  }

  .blockquote-divine footer {
      font-family: "Cinzel", serif;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      color: var(--gold-3);
      font-weight: 600;
      text-transform: uppercase;
  }

  .blockquote-divine footer::before {
      content: "\2014  ";
  }

  /* ==========================================
       CODE BLOCK
    ========================================== */
  code {
      font-family: "Fira Code", "Courier New", monospace;
      font-size: 0.88rem;
      color: var(--gold-1);
      background: rgba(212, 168, 67, 0.1);
      padding: 2px 8px;
      border-radius: var(--radius);
      border: 1px solid rgba(212, 168, 67, 0.15);
  }

  pre {
      background: rgba(8, 5, 2, 0.9);
      border: 1px solid var(--glass-border);
      border-left: 3px solid var(--gold-3);
      border-radius: var(--radius);
      padding: 20px 24px;
      overflow-x: auto;
      position: relative;
  }

  [data-theme="light"] pre {
      background: rgba(245, 238, 220, 0.9);
  }

  pre code {
      background: none;
      border: none;
      padding: 0;
      font-size: 0.9rem;
      color: var(--gold-1);
  }

  [data-theme="light"] pre code {
      color: var(--gold-3);
  }

  /* ==========================================
       FIGURE / IMAGE CAPTION
    ========================================== */
  figure {
      margin: 0;
  }

  .figure-img {
      border: 1px solid var(--glass-border);
      border-radius: var(--radius);
      box-shadow: var(--shadow-gold);
      transition: all 0.4s;
  }

  .figure-img:hover {
      border-color: var(--gold-3);
      box-shadow: var(--shadow-hover);
  }

  .figure-caption {
      font-family: "Cinzel", serif;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-dim);
      font-weight: 600;
      margin-top: 10px;
      text-align: center;
  }

  /* ==========================================
       AVATAR / PROFILE CHIP
    ========================================== */
  .avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 2px solid var(--gold-3);
      object-fit: cover;
      box-shadow: 0 0 12px rgba(212, 168, 67, 0.3);
      transition: all 0.25s;
  }

  .avatar:hover {
      border-color: var(--gold-1);
      box-shadow: 0 0 20px rgba(212, 168, 67, 0.5);
  }

  .avatar-lg {
      width: 64px;
      height: 64px;
  }

  .avatar-sm {
      width: 32px;
      height: 32px;
  }

  .avatar-placeholder {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 2px solid var(--gold-3);
      background: linear-gradient(135deg,
              rgba(212, 168, 67, 0.2),
              rgba(232, 135, 30, 0.1));
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: "Cinzel", serif;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--gold-2);
      box-shadow: 0 0 12px rgba(212, 168, 67, 0.25);
      flex-shrink: 0;
  }

  .avatar-placeholder.avatar-lg {
      width: 64px;
      height: 64px;
      font-size: 1.1rem;
  }

  .avatar-placeholder.avatar-sm {
      width: 32px;
      height: 32px;
      font-size: 0.65rem;
  }

  .profile-chip {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--surface-2);
      border: 1px solid var(--glass-border);
      border-radius: 100px;
      padding: 6px 16px 6px 6px;
      transition: all 0.25s;
  }

  .profile-chip:hover {
      border-color: var(--gold-3);
      background: rgba(212, 168, 67, 0.06);
  }

  .profile-chip-name {
      font-family: "Cinzel", serif;
      font-size: 0.78rem;
      letter-spacing: 0.06em;
      font-weight: 600;
      color: var(--text);
  }

  .profile-chip-role {
      font-size: 0.82rem;
      color: var(--text-dim);
      display: block;
      line-height: 1.2;
  }

  /* ==========================================
       CLOSE BUTTON
    ========================================== */
  .btn-close-divine {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1px solid var(--glass-border);
      background: transparent;
      color: var(--text-muted);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.2s;
      line-height: 1;
  }

  .btn-close-divine:hover {
      border-color: var(--crimson);
      color: var(--lotus);
      background: rgba(155, 35, 53, 0.1);
  }

  .is-hidden {
      display: none !important;
  }

  .recent-read-shell {
      margin-top: 1.5rem;
  }

  .recent-read-list {
      margin-top: 0.25rem;
  }

  .recent-read-link {
      display: block;
      padding: 16px 18px;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(212, 168, 67, 0.18);
      background:
          linear-gradient(180deg, rgba(212, 168, 67, 0.08), rgba(212, 168, 67, 0.03)),
          var(--surface-2);
      text-decoration: none;
      box-shadow: var(--shadow-soft);
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .recent-read-link:hover,
  .recent-read-link:focus-visible {
      transform: translateY(-2px);
      border-color: var(--gold-3);
      box-shadow: var(--shadow-hover);
  }

  .recent-read-kicker {
      display: inline-block;
      margin-bottom: 8px;
      font-family: "Cinzel", serif;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold-3);
  }

  .recent-read-title {
      display: block;
      font-family: "Cinzel", serif;
      font-size: 1rem;
      line-height: 1.4;
      color: var(--text);
      margin-bottom: 6px;
  }

  .recent-read-copy {
      display: block;
      font-size: 0.96rem;
      line-height: 1.65;
      color: var(--text-dim);
  }

  .page-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 20px;
  }

  .action-chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 9px 16px;
      border-radius: 999px;
      border: 1px solid rgba(212, 168, 67, 0.22);
      background: rgba(212, 168, 67, 0.05);
      color: var(--gold-2);
      font-family: "Cinzel", serif;
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  }

  .action-chip:hover,
  .action-chip:focus-visible {
      transform: translateY(-1px);
      border-color: var(--gold-3);
      color: var(--gold-1);
      box-shadow: var(--shadow-soft);
  }

  .action-chip.is-saved {
      background: rgba(212, 168, 67, 0.14);
      border-color: var(--gold-3);
      color: var(--gold-1);
  }

  .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px 20px;
      margin: 14px 0 10px;
  }

  .footer-links a {
      color: var(--gold-2);
      text-decoration: none;
      font-family: "Cinzel", serif;
      font-size: 0.74rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
  }

  .footer-links a:hover,
  .footer-links a:focus-visible {
      color: var(--gold-1);
  }

  .footer-legal {
      color: var(--text-dim);
      font-size: 0.92rem;
      line-height: 1.7;
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
  }

  .footer-explore {
      padding: 1.5rem;
      border: 1px solid rgba(212, 168, 67, 0.18);
      border-radius: var(--radius-lg);
      background:
          linear-gradient(180deg, rgba(212, 168, 67, 0.06), rgba(212, 168, 67, 0.02)),
          var(--surface-2);
      box-shadow: var(--shadow-soft);
  }

  .footer-explore-heading,
  .footer-explore-bottom {
      font-family: "Cinzel", serif;
      font-size: 0.84rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
  }

  .footer-explore-heading {
      padding-bottom: 0.95rem;
      border-bottom: 1px solid rgba(212, 168, 67, 0.14);
      margin-bottom: 1rem;
  }

  .footer-explore-bottom {
      padding-top: 1rem;
      border-top: 1px solid rgba(212, 168, 67, 0.14);
      margin-top: 1rem;
  }

  .footer-explore-heading a,
  .footer-explore-bottom a,
  .footer-explore-link,
  .footer-explore-section-link {
      color: var(--gold-2);
      text-decoration: none;
  }

  .footer-explore-heading a:hover,
  .footer-explore-heading a:focus-visible,
  .footer-explore-bottom a:hover,
  .footer-explore-bottom a:focus-visible,
  .footer-explore-section-link:hover,
  .footer-explore-section-link:focus-visible,
  .footer-explore-link:hover,
  .footer-explore-link:focus-visible {
      color: var(--gold-1);
  }

  .footer-explore-row {
      padding: 0.7rem 0;
      border-bottom: 1px solid rgba(212, 168, 67, 0.1);
  }

  .footer-explore-row-head {
      padding-top: 0;
      padding-bottom: 0.8rem;
      border-bottom-color: rgba(212, 168, 67, 0.18);
  }

  .footer-explore-row:last-child {
      border-bottom: none;
  }

  .footer-explore-link {
      font-size: 1rem;
      line-height: 1.6;
  }

  .footer-explore-icon {
      width: 30px;
      height: 30px;
      flex-shrink: 0;
      filter: drop-shadow(0 0 6px rgba(212, 168, 67, 0.28));
  }

  .footer-explore-mobile-label {
      display: inline-block;
      margin-bottom: 0.35rem;
      font-family: "Cinzel", serif;
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-dim);
  }

  .category-pill {
      align-items: center;
      justify-content: center;
      min-height: 34px;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  .symbolism-chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 30px;
      padding: 0.25rem 0.7rem;
      border: 1px solid rgba(212, 168, 67, 0.16);
      border-radius: 999px;
      text-transform: uppercase;
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      line-height: 1.4;
      text-decoration: none;
  }

  .symbolism-chip:hover,
  .symbolism-chip:focus-visible {
      color: var(--gold-1);
      border-color: rgba(212, 168, 67, 0.35);
  }

  .inline-link-list .symbolism-chip {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 4px 10px;
      margin-right: 8px;
      margin-bottom: 8px;
      border-radius: 999px;
      border: 1px solid transparent;
      text-decoration: none;
  }

  .inline-link-list .symbolism-chip::after {
      display: none;
  }

  .inline-link-list .symbolism-chip:last-child {
      margin-right: 0;
  }

  .symbolism-chip.category-pill-inner-obstacles {
      border-color: rgba(166, 58, 41, 0.42);
      background: linear-gradient(180deg, rgba(54, 16, 12, 0.72), rgba(34, 10, 8, 0.82));
      color: #f08a73;
  }

  .symbolism-chip.category-pill-inner-strengths {
      border-color: rgba(66, 128, 120, 0.4);
      background: linear-gradient(180deg, rgba(18, 39, 41, 0.68), rgba(10, 28, 30, 0.82));
      color: #8ad5c3;
  }

  .symbolism-chip.category-pill-inner-obstacles:hover,
  .symbolism-chip.category-pill-inner-obstacles:focus-visible {
      color: #f6a08d;
      border-color: rgba(166, 58, 41, 0.56);
  }

  .symbolism-chip.category-pill-inner-strengths:hover,
  .symbolism-chip.category-pill-inner-strengths:focus-visible {
      color: #a5e6d7;
      border-color: rgba(66, 128, 120, 0.5);
  }

  .category-pill-inner-obstacles {
      border-color: rgba(166, 58, 41, 0.42);
      background: linear-gradient(180deg, rgba(54, 16, 12, 0.72), rgba(34, 10, 8, 0.82));
      color: #f08a73;
  }

  .category-pill-inner-strengths {
      border-color: rgba(66, 128, 120, 0.4);
      background: linear-gradient(180deg, rgba(18, 39, 41, 0.68), rgba(10, 28, 30, 0.82));
      color: #8ad5c3;
  }

  [data-theme="light"] .category-pill-inner-obstacles {
      border-color: rgba(166, 58, 41, 0.28);
      background: linear-gradient(180deg, rgba(255, 241, 237, 0.96), rgba(252, 234, 228, 0.98));
      color: #a63a29;
  }

  [data-theme="light"] .category-pill-inner-strengths {
      border-color: rgba(66, 128, 120, 0.26);
      background: linear-gradient(180deg, rgba(239, 251, 248, 0.98), rgba(230, 246, 241, 0.98));
      color: #2b7068;
  }

  [data-theme="light"] .symbolism-chip.category-pill-inner-obstacles {
      border-color: rgba(166, 58, 41, 0.28);
      background: linear-gradient(180deg, rgba(255, 241, 237, 0.96), rgba(252, 234, 228, 0.98));
      color: #a63a29;
  }

  [data-theme="light"] .symbolism-chip.category-pill-inner-strengths {
      border-color: rgba(66, 128, 120, 0.26);
      background: linear-gradient(180deg, rgba(239, 251, 248, 0.98), rgba(230, 246, 241, 0.98));
      color: #2b7068;
  }

  .footer-explore-chip {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0.25rem 0.7rem;
      border: 1px solid rgba(212, 168, 67, 0.16);
      border-radius: 999px;
      background: rgba(212, 168, 67, 0.05);
      color: var(--gold-2);
      font-size: 0.84rem;
      line-height: 1.4;
      text-decoration: none;
  }

  .footer-explore-chip:hover,
  .footer-explore-chip:focus-visible {
      color: var(--gold-1);
      border-color: rgba(212, 168, 67, 0.35);
  }

  @media (max-width: 767.98px) {
      .footer-links {
          gap: 10px 14px;
      }

      .footer-links a {
          font-size: 0.68rem;
          letter-spacing: 0.1em;
      }

      .footer-explore {
          padding: 1.25rem 1rem;
      }

      .footer-explore-heading,
      .footer-explore-bottom {
          font-size: 0.74rem;
      }

      .footer-explore-row {
          text-align: left;
      }

      .footer-explore-link {
          font-size: 0.96rem;
      }

      .footer-explore-chip {
          min-height: 28px;
          padding: 0.22rem 0.6rem;
          font-size: 0.78rem;
      }

      .footer-explore-bottom {
          flex-direction: column;
          gap: 0.55rem !important;
      }

  }

  .editorial-note {

      padding: 0.9rem 1rem;
      border: 1px solid rgba(212, 168, 83, 0.28);
      border-radius: 16px;
      background: rgba(13, 9, 5, 0.42);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  .editorial-note-label {
      display: inline-block;
      margin-bottom: 0.35rem;
      font-size: 0.74rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(232, 208, 162, 0.78);
  }

  .editorial-note-copy {
      margin: 0;
      color: rgba(245, 238, 225, 0.88);
      line-height: 1.65;
  }

  .editorial-note a {
      color: var(--gold, #d4a853);
  }

  .eeat-stack {
      display: grid;
      gap: 0.9rem;
  }

  .eeat-item p {
      margin: 0.25rem 0 0;
  }

  .eeat-facts {
      margin-top: 1rem;
  }